I am writing a distributed application framework in C ++. One of the requirements is to provide distributed shared memory. Instead of writing my own from scratch (and possibly reinventing the wheel), I thought I'd see if there were any pre-existing open source libraries - a quick Google search did nothing.
Does anyone have any experience with a good C ++ DSM library that they can recommend?
Ideally, the library will support MRMW (multiple readers / multiple authors), but if necessary, I can work with MRSW (multiple readers, single writer). I am developing Linux.
c ++ shared-memory distributed
scoobydoo
source share