3

As far as I know there is Terracotta and Maglev. Are there any others?

Oded
  • 489,969
  • 99
  • 883
  • 1,009
yazz.com
  • 57,320
  • 66
  • 234
  • 385

5 Answers5

4

Pretty much every big vendor got one, plus a handful of independent vendors:

  • memcached [1] — ubiquitous, community-driven;
  • Infinispan [2] — backed by JBoss, open-source;
  • Velocity [3] — commercial (Microsoft), in beta, .NET only;
  • Gemfire [4] — commercial (VMWare)
  • Coherence [5] — commercial (Oracle)
  • GigaSpaces XAP [6] — commercial
  • ScaleOut [7] — commercial
  • Terracotta [8] — commercial

Note that there is a pretty thin line between state sharing solutions and distributed caching solutions. I only listed the ones that keep the state in main memory, which are often dubbed "data grids" on the street.

Hope this helps.

  • [1] memcached.org
  • [2] jboss.org/infinispan
  • [3] blogs.msdn.com/b/velocity/
  • [4] www.gemstone.com/products/gemfire
  • [5] www.oracle.com/technetwork/middleware/coherence/overview/index.html
  • [6] gigaspaces.com
  • [7] www.scaleoutsoftware.com/products/scaleout-stateserver/
  • [8] www.terracotta.org
graven
  • 81
  • 3
2

memcache : many major sites use it, Google AppEngine included. There are bindings to it for everything under the sun (pretty much ;-)

jldupont
  • 93,734
  • 56
  • 203
  • 318
  • My mistake, I worded the question badly, but you were right, memcached is a shared memory system :) – yazz.com Feb 18 '10 at 19:51
2

Memcached is probably the most heavily used one (as their biggest user Facebook shares 28TB of RAM with it at the moment).

Daff
  • 43,734
  • 9
  • 106
  • 120
  • My mistake, I worded the question badly, but you were right, memcached is a shared memory system :) – yazz.com Feb 18 '10 at 19:52
2

Apart from MemCached, there is Velocity from Microsoft.

Oded
  • 489,969
  • 99
  • 883
  • 1,009
2

Since you mentioned MagLev, there's obviously also GemStone/S on top of which MagLev is built, and GemFire, their JVM/.NET/C++ product.

Community
  • 1
  • 1
Jörg W Mittag
  • 363,080
  • 75
  • 446
  • 653