i'm generating key-value pairs like this:
KEY VALUE
---- ------
user.varname.2014-01-01 10
user.varname.2014-01-02 10
user.varname.2014-01-03 10
i'll need operations:
- query by username
- query by varname
- query by date
currently i'm using mysql and is working fine splitting string to query.
- what about query performance? is this a good way to store and query billions of rows?
- maybe should I use a nosql or another database?