#What is the best storage package?
10 messages · Page 1 of 1 (latest)
https://discordjs.guide/legacy/sequelize
I would start with something like this. Sequelize ORM for a sqlite database
Simple, easy, will probably be more than enough for your bot for a long time...easily transition to a dedicated DB if needed
The package itself doesn't really matter, what you're probably asking is what kind of database engine / storage provider you should use. In the end that depends on what you consider to be "very large amounts of data" and what kind of data that is, but like Samtino said, a local SQLite database is probably just fine.
They asked earlier. They said a couple thousand servers. So sqlite is fine
Yeah most likely. In the world of databases a "very large amount of data" is a lot more than what you might think.
But what specific things they intend to store / how often they expect to perform queries, idk
^^^
"A lot" is more like millions of rows with hundreds of concurrent connections
Yeah, storing data about a few thousand servers / tens of thousands of users is a relatively small amount of data, so you should be just fine.