Efficient way to store hashes in database ?
#3
I wouldn't use MySQL if "fastest request/response time" were a concern.

If you wish to do this, storing them as a binary blob with prepared statements is probably the best option.

However, I would seriously suggest looking at a key value store system for handling this type of workload. It's much better suited to it than a full SQL database.
Reply


Messages In This Thread
RE: Efficient way to store hashes in database ? - by Bitweasil - 08-07-2012, 07:45 PM