-
I was trying to create multiple khepri clusters using RaServerConfig, in an elixir application, but I can't really find any good documentation regarding the same. This I am doing beacuse I need khepri to start multiple Ra clusters with different names, but in elixir it is not happening by default. So RaServerConfig is what i was trying to do.
Can anyone guide me ? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 3 replies
-
Hello! It would be much easier to assist you if you provided your code via a git repository we could clone. 3 lines of code is insufficient. |
Beta Was this translation helpful? Give feedback.
-
To start multiple Kheri stores, you need to call khepri:start("/path/to/store1", store1),
khepri:start("/path/to/store2", store2), (I will let you convert that to Elixir) |
Beta Was this translation helpful? Give feedback.
-
#279 will solve the issue. |
Beta Was this translation helpful? Give feedback.
#279 will solve the issue.
I have found the issue. Thank you all.