java - Infinispan preload data from database table -
how preload data infinispan local cache? have pre-existing application table has key value pairs. want infinispan cache data in table , when read/write data cache, want underlying table in sync. possible infinispan?
infinispan stores entries in sql db in marshalled form (as there no generic mapping between pojos , sql), , needs keep metadata along. that's why jdbc stores can't access existing db structure.
there's jpa store uses hibernate orm access db , "marshall" entries according jpa specification. may option you.
Comments
Post a Comment