Hello Andrejs,
I know that I can configure persistence, and also backup read. The problem that I have is that the documentations says that there can be only one centralized database, and I want them to be distributed.
The arquitecture I have is something like:
Node A - DataBase A
Node B - DataBase B
Node C - DataBase C
So all nodes uses their database to store everything (because I want a backup-all). That means, if I make a put(someKey, someValue) I want this to be stored in DataBase A, DataBase B and DataBase C and also to be available for a fast-read in the memory of Node A, Node B and Node C. As far as I know, when I make a put(someKey, someValue) it will be stored as original in some node (let's say Node A) and as backup in both others (let's say Node B and Node C). If I configure a database persistence, it will be also persisted in that database but it will be placed only in one site (Node A, Node B, Node C, or any other Node X), but not replicated in every node.
Thanks.
Álvaro.