Python Developer Question:
Download Job Interview Questions and Answers PDF
Tell me how Memcached should not be used in your Python project?
Answer:
☛ • Memcached common misuse is to use it as a data store, and not as a cache
☛ • Never use Memcached as the only source of the information you need to run your application. Data should always be available through another source as well
☛ • Memcached is just a key or value store and cannot perform query over the data or iterate over the contents to extract information
☛ • Memcached does not offer any form of security either in encryption or authentication
☛ • Never use Memcached as the only source of the information you need to run your application. Data should always be available through another source as well
☛ • Memcached is just a key or value store and cannot perform query over the data or iterate over the contents to extract information
☛ • Memcached does not offer any form of security either in encryption or authentication
Download Python Developer Interview Questions And Answers
PDF
Previous Question | Next Question |
Tell me what is the difference between Django, Pyramid, and Flask? | Explain me inheritance in Python with an example? |