I have an application where users can define their own data sets (fields, fields types and such) and then store their data... very similar to them creating and managing their own tables.
Doing this seems to present issues when trying to set it up on something like MySQL... from a custom query perspective and from a storage perspective. I don't want to end up with thousands of tables or even managing so many different databases.
Someone told me that NoSQL was something to look into based on the flexibility of getting away from crazy complex queries.
The end result is the user will be able to query theses datasets to build graphs. Will something like http://redis.io accomplish this task for me?
If not, does anyone have suggestions on the best option to support this task?
Thanks!