1 Reply Latest reply on Jun 9, 2009 12:32 PM by galder.zamarreno

    Is it good to use cache as a data sharing tool?

      Dear all,I have some common data object about 10MB memory to share between serveral seperated JVMs. It seems if I set the cache eviction time to very long, the cache system will become a data sharing system.

      Is it a good way to use jboss pojo cache to do the job?

      Thanks:-)

        • 1. Re: Is it good to use cache as a data sharing tool?
          galder.zamarreno

          Pojo cache could help reduce the replication payload when replicating that 10MB object because only the fields of the pojo that have changed would be replicated. With jboss cache core, the entire object would need to be serialized and sent around whenever there's a slight change to it.