3 Replies Latest reply on Mar 4, 2013 8:12 AM by galder.zamarreno

    Need help in starting and evaluating the Infinispan

    shashanktiw

      My use case is

      1.     To start with a Cache Store to sustain 200K records

      2.     Client server situation i.e. the Infispan will run in one JVM and clients will be in another

      3.     REST interface for the cache store

      4.     Query support

      5.     Regular updation of the cahe

      6.     Persistence

       

      I have to evaluate these points and how fast this can be from the regular JDBC calls.

       

      Please help me..

       

      I have made a prototype.

      with following config xml ( also attached )

      config.JPG

       

       

      I can do the basic put and get from both server and client

      but this is slow

      even puting 10K records is taking about a min time, which is too large.

       

      With this I am creating

       

      DefaultCacheManager m = new DefaultCacheManager(configFile);

      Cache<String, Ticket> myCache = m.getCache("SearchableCacheStore");

       

      with this myCache

      I can get or put the data from both JVMs.