Hi all,I'm looking for a light-weight datastore for our server application. Most of the data in our app is stored in a graph using neo4j. But some of the "administrative" data lends itself more to a simple row or column-based store. So I was thinking of using sqlite3 for this. However, it wasn't obvious to me how/whether a single sqlite db could be accessed from multiple Node.js processes running in a cluster. Anyone out there have an experience doing this?Thanks.-brian--
--
Job Board: http://jobs.nodejs.org/
Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to nod...@googlegroups.com
To unsubscribe from this group, send email to
nodejs+un...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en
---
You received this message because you are subscribed to the Google Groups "nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to nodejs+un...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Also, one process writing will lock out any other process reading.
Note that the SQLite files should not be stored on a network file system. (Apparently fcntl() locking is broken in many NFS implementations).
Also, one process writing will lock out any other process reading.