Forget singleton for a moment.
You have static methods that return application state. You better watch out.
If two threads access this shared state... boom. If you live on the webserver, your code will eventually be run in a multi-threaded context.
|
2 | added 150 characters in body | ||
|
Forget singleton for a moment. You have static methods that return application state. You better watch out. If two threads access this shared state... boom. If you live on the webserver, your code will eventually be run in a multi-threaded context. |
||||
|
1 |
|
||
|
Forget singleton for a moment. You have static methods that return application state. You better watch out. |
||||