InterviewSolution
Saved Bookmarks
| 1. |
What Is A Stateless System? |
|
Answer» A STATELESS system is a system which doesn't maintain any internal STATE. Such system will PRODUCE same output for same input at any POINT of time. It's always easier to CODE and optimize a stateless system, so you should always strive for one if possible. A stateless system is a system which doesn't maintain any internal state. Such system will produce same output for same input at any point of time. It's always easier to code and optimize a stateless system, so you should always strive for one if possible. |
|