Infinispan is an LGPL licensed data grid platform for Java and other JVM languages, providing a distributed in-memory cache as well as a clustering toolkit.

learn more… | top users | synonyms

0
votes
0answers
7 views

Error when trying to start an infinispan cache after stopping it programatically

I need to start and stop a local infinispan cache programmatically. To start the cache initially, all I have to do is: defaultcachemanager.getCache("local"); This happens when the system (karaf in ...
0
votes
0answers
20 views

How to get size of data in Infinispan cache, alternate for calculateInMemorySize of ehcache?

I am migrating from ehcache to infinispan. In ehcache we have net.sf.ehcache.Cache.calculateInMemorySize() to calculate in memory size. How to calculate in memory size in infinispan?
1
vote
0answers
23 views

Distributed cache using infinispan on tomcat failes to start

Hi I'm trying to use infinispan as a distributed cache on my application. im using it as a second level cache for hibernate using spring and JPA. Infinispan is configured to work in distributed ...
0
votes
0answers
20 views

Infinispan Second Level Cache under Tomcat 7 and JPA2 with Hibernate4

Trying to configure infinispan as 2LC under tomcat 7 with JOTM. Persistence.xml <?xml version="1.0" encoding="UTF-8"?> <persistence version="2.0" ...
0
votes
0answers
46 views

Why can't this JBoss 7 module find its own classes?

My JBoss 7.1.1.Final installation came shipped with the following module: <!-- contains the JPA integration classes for Hibernate 3.x --> <module xmlns="urn:jboss:module:1.1" ...
0
votes
1answer
54 views

Query cache using infinispan

In my project I am using Jboss AS 7.1 server, hibernate 3.5 and java 1.7. For cache I am using infinispan 5.1.5 ("Brahma").By the following way I am configuring the cache in hibernate config xml. ...
0
votes
1answer
24 views

Compatibility of Java 1.7 with infinispan in clustered mode

I'm planning to use infinispan for distributed caching. I just needed to know a few things before i could start up with configuring it in jboss. Is infinispan 5.1.5(Brahma) and jboss 7.1 compatible ...
0
votes
1answer
30 views

How to use different JMX domain names when duplicate doamins allowed in Infinispan L2 cache

I am using Infinispan L2 cache and I have two application nodes. The two apps are not identical and currently I am using following configurations. <global> <globalJmxStatistics ...
1
vote
1answer
37 views

Infinispan : Responses contains more than 1 not equal elements

I am using Infinispan as L2 cache and I have two application nodes. The L2 cache in two apps are replicated. The two apps are not identical. One of my app fill the database using web services while ...
1
vote
3answers
43 views

HowTo Test JAX-RS Application that uses Infinispan (JBoss 7 + Arquillian)

Info: My Application is a simple JAX-RS Service that stores some values in a cache provided by JBoss 7.1. I would like to use Arquillian to call the service and test the response. But unfortunately ...
0
votes
3answers
75 views

How to use Infinispan query with JBoss7.1

I have an Infinispan cache that I created through JBoss7.1 web interface. It is configured as an indexed, distributed cache. In my jboss-deployment-structure.xml file I have added dependencies on ...
1
vote
1answer
34 views

Infinispan Configurations Using property file

Is it possible to load values for infinispan-config.xml file from some property file so that we can get rid of hard coded values. If possible then can somebody show me the way how i load property file ...
1
vote
1answer
25 views

Infinispan search inheritance search mapping configuration

I have simple code that test search engine in Infinispan. public class InifinispanTest { private static class DemoA { private Long id; public Long getId() { return ...
0
votes
0answers
99 views

Hibernate / Spring transaction issue with Infinispan L2 cache

I am trying to use Infinispan as Hibernate L2 cache for an application which use technologies like Tomcat 6, Hibernate 4 and Spring 3.5. The application running in Tomcat and our current transaction ...
0
votes
1answer
47 views

Access Infinispan MBeans programatically

I am using Infinispan 5.2.1 and tried to access the MBeans via my Java program. But no luck. I assume Infinispan MBeans are registered in Platform MBean server. I can see all the MBeans correctly in ...
0
votes
1answer
51 views

Clearing cluster in infinispan lucene index

I have used Hibernate Search and have used Infinispan to store Lucene indexes. The configurations are as follows: in persistence.xml <property ...
0
votes
1answer
52 views

Request for simple modeshape 3.x/infinispan SQL DB configuration

I've been trying to get modeshape 3.2 working with a MySQL database and I'm not getting very far. By default everything is in memory which is useless to me. From what I've pieced together so far it ...
0
votes
0answers
99 views

Infinispan with Hibernate: Objects are not added to the cache or removed after an update

We currently have some problems with our Infinispan 2nd level cache. We've prepared two test cases: 1) Newly created objects are not put in the 2nd level Cache. We create a new object (TestEntity) in ...
3
votes
1answer
251 views

JBoss AS 7 Infinispan Cluster

I have a two node JBoss AS 7.1.1.FINAL cluster setup in the following way - master - running on Ubuntu Server 12.10 (VirtualBox VM) slave - running on Windows 7 (VirtaulBox host machine) I have ...
0
votes
1answer
16 views

CacheEntryCreated event--again

Cross posted from JBoss Infinispan Discussions I'm trying to implement some code that takes actions whenever an entry is created in one of my Infinispan caches. I realized quickly that the ...
2
votes
1answer
76 views

Query Cache Hibernate loading entities

Can any one help me resolving this question. I am using Infinispan as second level cache and Hibernate as ORM. I have turned on both enityt and query cache. I have two queries, for example Q1 is ...
0
votes
1answer
56 views

Infinispan L2 cache custom eviction policy

I am planning to use infinispan as my Hibernate app L2 cache. My all entities has a life cycle attribute [ New -> Run -> Completed ]. Initially my entities are in New state and when time goes it's ...
0
votes
1answer
113 views

Configure custom Infinispan loader with JBoss AS 7.1

we are migrating one application from JBoss AS 6 to 7. This new instance is useing the standalone-ha profile. On the previous version, we used a custom Infinispan loader which stored the cache ...
0
votes
1answer
44 views

How to find stale Infinispan / Jboss Cache objects?

Subject is the question. Scenario : Even though there is a logout link, some Users don't properly logout. And they immediately take a new tab and login again. This time a new Cache object is created ...
1
vote
1answer
93 views

Getting an @Resource into my Guice Module

I've seen various bits and pieces, but I'm either approaching this wrong or a bit short on my understanding on Guice. I'm trying to modify/extend this cache4guice Infinispan Module so that it can ...
0
votes
1answer
178 views

How to Inject infinispan cache in a Spring non EE application?

I'm aware of CDI Support; but was wondering what's the correct way of achieving the same in non EE environment with spring. We could use weld or inject DefaultCacheManager and get any cache from it, ...
0
votes
1answer
75 views

Which version of Infinispan runs on Jboss AS 5.1.0 GA?

As per this post Infinispan 4.x can be run on Jboss AS 5.1.0 GA. 1. So, is that it? Can't we run higher versions of Infinispan on Jboss AS 5.1.0 GA? 2. Some bug fixes would have been done on ...
0
votes
1answer
314 views

Why jboss picking the infinispan cache not Ehcache

I have migrated my project from glassfish2.2.1 to JBoss eap-6.0. After migrating to Jboss, i am getting the below issue 17:38:45,581 ERROR [org.jboss.msc.service.fail] (ServerService Thread ...
0
votes
1answer
126 views

Infinispan persistence without any database?

Being a newbie to Infinispan, I'm exploring the option of of having Infinispan 5.1.5 for both distributed caching as well as datastore. So, the idea is not to have a separate datastore viz. ...
0
votes
0answers
26 views

Infinispan global transaction support for Hot Rod

According to the bug https://issues.jboss.org/browse/ISPN-375 Hot Rod clients does not support transaction for Infinispan current version (5.2.1). I have seen following workaround for the issue. ...
1
vote
2answers
89 views

How to repopulate Cache after expiration?

I've been reading about infinispan... I need to use just plain vanilla cache, no clustering, no secondary hibernate cache. I understand that after expiration, objects in Cache will be destroyed, what ...
0
votes
1answer
62 views

infinispan cache server expiration failure

I am using infinispan-5.1.6.FINAL as a remote-cache server and hot-rod protocol to access it. but found the is not working as intended, i.e cached value of a key is not evicted after 1ms as per the ...
0
votes
1answer
14 views

Migrating Infinispan 4.2 to 5.1 with the InternalEntryFactory class

we are migrating from Infinispan 4.2 to 5.1 in our Java project. In version 4.2, there's a class called InternalEntryFactory, which is located on the org.infinispan.container.entries package. But in ...
0
votes
1answer
94 views

Detect cluster node failure Jboss AS 7.1.1-Final

I have configured 2 node clusers in Jboss AS 7.1.1-Final. I am planning to use sticky sessions. Meanwhile I am also recording number of active online users in Infinispan cache with node IP from where ...
0
votes
1answer
63 views

Java EE Database Bottleneck - Cache

I'm writing an application that reads in a file via a gui, converts it to a different format, persists both files in a MySQL DB and presents the converted file as a download option to the user. I was ...
0
votes
1answer
38 views

Jboss run mode choice with infinispan

I am starting on a Jboss 7.1 project and considering infinispan for caching. What are the advantages/disadvantages(limitations) of running Jboss in standalone vs domain mode with infinispan? I ...
1
vote
1answer
61 views

Configuring Infinispan CacheProvider in Seam 2.3

I am trying to migrate my Seam 2.3 application to use Infinispan for caching within JBoss AS7. I've looked at the Blog example within the Seam 2.3 distribution, and have copied the jGroupsConfig.xml ...
1
vote
1answer
64 views

JBoss cache & Hiberate 4.x, is it possible?

I'm trying to get JBoss cache working with Hibernate 4.1.9, but there is no documentation or indication that it is even possible, anymore. No notes on why not either, if so. I used it successfully for ...
0
votes
0answers
67 views

Which is the best open source clustered java cache? [closed]

We are in process of evaluating open source clustered java cache. The cache will be deployed on multiple nodes of the jetty cluster. We will be caching simple java objects in the cache. There are ...
0
votes
0answers
206 views

Setting JNDI for Jboss jta transaction

I'm having problem configuring Hibernate and JBoss Transactions with Jetty. This is required by Infinispan used as second level cache from Hibernate. My problem occupies when Hibernate try to create ...
0
votes
0answers
153 views

Maven hibernate-infinispan: can not find symbol

I want to compile and package hibernate-infinispan.jar file from http://grepcode.com/snapshot/repo1.maven.org/maven2/org.hibernate/hibernate-infinispan/3.6.9.Final/ with maven. I downloaded and ...
0
votes
1answer
238 views

Infinispan/JGroups cluster connection failure, when TCPPING.initialHost contains multiple hosts

I'm trying to configure the Infinispan using TCP transport. If in TCPPING.initialHosts I put the list of all potential cluster nodes, the cluster doesn't connects at all - there are about 15 ...
1
vote
0answers
160 views

@Cacheable is ignored when orm.xml is used in JBoss7 + JPA(Hibernate) + Infinispan

I’m trying to use JPA second level cache on JBoss 7.1. and trying to have: Use @Cacheable annotation for entity caching. Use orm.xml only for named queries. When second level cache and selective ...
0
votes
1answer
102 views

Infinispan query without reflection

I am investigating Infinispan to speed up my application. An out-of-box configuration works even slower than persisting into SQL Server. I am aware of Hibernate Search config to tune Lucene indexing ...
0
votes
1answer
340 views

Hibernate Collection cache : How to use?

I have two entities Book and Author. Book has a collection of authors. I am using second level cache to keep the Book entity with its Authors. When debugging I can see there is putForExternalRead is ...
1
vote
2answers
66 views

Infinispan cache preserving insertion order

I'm using Infinispan 5.0.1 for my caching needs. The problem I'm having is that I need to get data back from the cache in the same order it was put in the cache. For example: Cache<String, ...
0
votes
0answers
319 views

Spring JPA and Hibernate 4 with Infinispan as 2nd level cache provider

I searched on google and found a few people having the same issue but could not find a concrete answer. Basically we use Spring with JPA along with Hibernate 4.1.7 and trying to setup Infinispan as ...
2
votes
1answer
249 views

How to use the write behind method of hibernate-infinispan in JBoss AS7

I have created a REST API in a standalone JBoss AS7, using hibernate as JPA provider and Infinispan as second level cache. I've seen in ...
1
vote
1answer
105 views

Infinispan keyset() not suitable for production

I decided to use infinispan distributed grid to extend my application to support cluster but I encountered a limitation when using this kind of shared resource. How can I retrieve all the values or ...
0
votes
1answer
312 views

JBoss 7 + Infinispan and Transactions

I am using JBoss As 7.1.1 Final. I have configured a replicated cache with transaction mode 'FULL_XA'. I am using the cache as an in memory data base.The entries in the cache are ...

1 2 3