Codifier
Codifier

Reputation: 145

Open Source Applications using distributed caching solutions

I am looking for a list of open source Java applications which use the distributed caching solutions like ehcache, infinispan, Hazelcast etc?

For my research I am making changes in locking behavior of these caches and trying to understand the performance changes. To substantiate my results I want to use some production level real world applications, not some dummy cache access pattern generator. Can someone provide a list of 5-6 good open source projects which uses these products in distributed settings?

Otherwise can someone provide a list of open source distributed computing based java projects which require a high level of concurrency?

Upvotes: 2

Views: 743

Answers (2)

Galder Zamarreño
Galder Zamarreño

Reputation: 5187

Here's a list of some open source projects using Infinispan:

  • JBoss Application Server 7
  • Hibernate ORM (2LC)
  • Hibernate OGM
  • Modeshape
  • Apache Camel
  • CapeDwarf

Upvotes: 3

Fuad Malikov
Fuad Malikov

Reputation: 2345

Here is the list of several open source projects that use Hazelcast

  • Apache Tuscany
  • Alfresco
  • OrientDB
  • vert.x
  • Mozilla metrics: Several projects like baghera, socorro and etc.

Upvotes: 2

Related Questions