TechNom (nobody)@programming.devtoProgrammer Humor@programming.dev•FLOSS communities right nowEnglish
1·
9 months agoWow! You are so deluded, thinking of yourself as a cool new kid with cool new tech (Discord) fighting against old people. What you don’t get is that people are protesting the use of Discord for something it’s not suited to. There’s no generation gap in it. The best of the youngest developers I know have the same opinion. Perhaps it’s time for you to reflect on your own standing.
While I understand your point, there’s a mistake that I see far too often in the industry. Using Relational DBs where the data model is better suited to other sorts of DBs. For example, JSON documents are better stored in document DBs like mongo. I realize that your use case doesn’t involve querying json - in which it can be simply stored as text. Similar mistakes are made for time series data, key-value data and directory type data.
I’m not particularly angry at such (ab)uses of RDB. But you’ll probably get better results with NoSQL DBs. Even in cases that involve multiple data models, you could combine multiple DB software to achieve the best results. Or even better, there are adaptors for RDBMS that make it behave like different types at the same time. For example, ferretdb makes it behave like mongodb, postgis for geographic db, etc.