Reputation: 21
I would like to know if an application server is needed to give multiple users access to the same Microstream database at the same time ?
Upvotes: 2
Views: 276
Reputation: 294
You don’t need an application server, but you can use one to realize multiple users access. Microstream itself is designed to provide object graph persistence for a single java process. That process owns the storage and its data exclusively. So you don’t give multiple users direct access to the data. It’s the applications responsibility to realize the multiuser access.
Upvotes: 2