Is Akka suitable for sharing one kind of data through separate EJBs?

I have a JavaEE clustered application. I would like to share one view on the data structure between EJBs.

I do not want EJBs to compete with each other for updating the database and would rather share state in memory.

Can Akka be useful here? Perhaps transactors?

+3
source share
1 answer

For the part of just sharing actors, it may not be what you are looking for. Akkas STM, on the other hand, sounds good.

+1
source

All Articles