Rawhi
Rawhi

Reputation: 6413

Number of databases per instance

Is there any limitation on the number of redisgraph databases that I can create in a single redis instance?

GRAPH.QUERY database1 "Cypher"

Is there any performance issues regarding a high number of these keys?
Thanks

Upvotes: 1

Views: 176

Answers (1)

SWilly22
SWilly22

Reputation: 879

The number of graphs on a single Redis server is limited by the number of keys the server can accommodate, as each graph is associated with a key.

In terms of performance, RedisGraph the module will initialise a single global thread pool which will serve all of the graph keys, obviously each graph will have its memory footprint. but this is not different than having multiple keys of different types: list, set, hash.

Upvotes: 2

Related Questions