Nitrite/Java: Distributed application #32
-
I'd like to ask how can we use Nitrite for a distributed application? This would mean
|
Beta Was this translation helpful? Give feedback.
Replies: 0 comments 1 reply
-
Nitrite is an embedded database, only a single process at a time can access the database file for read and write operation. Once the database file in opened in a process, other process cannot open the file. But in a single process the database can be accessed by multiple threads. Nitrite is not like traditional server side database system, it does not comes with a database server. Here the idea is that the database system is embedded in your application as a library. It is ideal for mobile application or desktop application or small server side application where only one instance is accessing the database. |
Beta Was this translation helpful? Give feedback.
Nitrite is an embedded database, only a single process at a time can access the database file for read and write operation. Once the database file in opened in a process, other process cannot open the file. But in a single process the database can be accessed by multiple threads.
Nitrite is not like traditional server side database system, it does not comes with a database server. Here the idea is that the database system is embedded in your application as a library. It is ideal for mobile application or desktop application or small server side application where only one instance is accessing the database.