This is my use case: I want to store a flag and this flag should persist until the app is restarted. For example, if the app is crashed I want that flag to be reset.
Do you think if using SimpleMemoryObjectStore with persistent being false will work?
SimpleMemoryObjectStore is not persistent by default:
So if the server is restarted, the value will be lost.