Hi Emil, When you're using Neo4j in embedded mode, only the hosting process can directly access the data store. If you're using it in server mode, then any number of HTTP clients can concurrently access the database through the Web API.
However, Neo4j is totally thread safe so you can have many concurrent threads accessing the data in embedded mode, so it's fine to use Neo4j embedded in your own Web applications. If you need to scale out the number of instances of Neo4j in your system, then read up on HA: http://docs.neo4j.org/chunked/snapshot/ha-setup-tutorial.html Jim _______________________________________________ Neo4j mailing list [email protected] https://lists.neo4j.org/mailman/listinfo/user

