100,000 complex structures that are accessed frequently by 100,000 users

Posted by Saad on Programmers See other posts from Programmers or by Saad
Published on 2012-11-25T18:29:17Z Indexed on 2012/11/25 23:22 UTC
Read the original article Hit count: 848

Filed under:
|
|
|

If you are required to store 100,000 complex structures that are accessed frequently by 100,000 users, which of the following solutions would you use and why? Memcached, In-code python objects, Redis, or a relational database (MySQL). With the little knowledge that I have I think that memcached and In-code python object will not store permanent persistent data. so they don't qualify as the right answer for such a problem. And for complex data structures its best to use Redis. Please correct me if I am wrong.

© Programmers or respective owner

Related posts about python

Related posts about mysql