Is it possible to use MongoDB without a database part? As with my application, it would be ideal to just keep the database in memory and not really require a database server. A use case for this is to pretty much wrap the selection / query mechanism around a series of documents that only exist temporarily in memory — after the session is over, we can no longer take care of the documents.
Thanks guys, the application is in Node.js. If MongoDB cannot do this, do you have any recommendations?
source
share