Explain how memcached should not be used in your python project?



Explain how memcached should not be used in your python project?..

Answer / Aman Parihar

Memcached should NOT be misused in Python projects:
1. Not for storing sensitive data: Memcached is an in-memory key-value store, and it doesn't provide encryption or protection for sensitive data.
2. Not as a long-term storage solution: Memcached does not persist data when the server restarts, so it should be used as a caching layer for frequently accessed data instead of a long-term storage solution.
3. Not for large amounts of small objects: Although Memcached can handle millions of small objects, it may not be the best choice for storing many small objects, as they might consume too much memory.
4. Not without proper validation: Data coming from Memcached should always be validated to protect against potential security issues and ensure data integrity.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Python Interview Questions

Name the arithmetic operators supported by python.

1 Answers  


What does len () mean in python?

1 Answers  


What is a closure in python?

1 Answers  


Can you use tabs in python?

1 Answers  


Is it better to learn python or java?

1 Answers  


How do you sort a dataframe in python?

1 Answers  


What is an egg in python?

1 Answers  


Does python have null?

1 Answers  


Which server is best for python?

1 Answers  


What is the usage of help() function in python?

1 Answers  


Explain what is Flask & its benefits?

1 Answers  


Explain the use of decorators?

1 Answers  


Categories