0
portx-dev created
I want to separate DB read and write endpoints. Is such a thing possible with the standard features? The objective is load balancing.
env: ABP Commercial 7.1
4 Answer(s)
-
0
Abp does not provide out-of-the-box read-write separation.
You can see: https://github.com/abpframework/abp/issues/7120 and https://github.com/abpframework/abp/issues/3838
-
0
Thank you very much.
I have checked and it looks like it can be done with some customization. I am aware that this customization is not too difficult, is that correct?
-
0
Hi,
Yes, you can try to implement it.
Just an idea, You can customize the
IReadOnlyRepository
and switch the connection string to the read-only database. -
0
thx