A customer I work for is in need for a distributed transactional cache.
Hibernate+EHCache is not an option since Hibernate is not the only persistence framework we use. we also have Spring JDBCTemplate and pure JDBC.
what we need is an easily distributed cache, with a transaction support. meaning the distributed cache is updated on transaction commit, or returns to its pre-transaction state on transaction rollback.
so far i didnt find anything usefull, any ideas?