Hi all,
I've prepared my Neo4j instance to run on docker. It works fine, but I started to test how does it handle processing of multiple queries at the time. It turns out that it just queues them and
handle them sequentially. I wonder if there is a configuration setting that would allow database
to process multiple queries at the time.
I use simple docker-compose.
version: '3.8'
services:
neo4j:
image: neo4j:5.1
hostname: neo4j
container_name: neo4j
ports:
- "7474:7474"
- "7687:7687"
volumes:
- ./neo4j/conf:/conf
- ./neo4j/data:/data
- ./neo4j/logs:/logs
- ./neo4j/plugins:/plugins
- ../workspace:/workspace
environment:
- NEO4JLABS_PLUGINS=["apoc", "n10s"]
- NEO4J_AUTH=XXX/XXX