1

I would like to use Infinispan following a tree like structure for the cache. For example, using the following data structure for ticker symbols:

  1. Exchange (NY stock exchange, AMEX...)
  2. Date
  3. Ticker

I am not sure how to implement this as the only examples that I have found are pretty basic such as:

cache.put("key", "value");

I tried to look up the internet and stackoverflow without any luck... I know that I could flatten the structure in the example above but for illustrative purposes, I would like to know how Infinispan works (and the tutorials don't cover it, which is why I must not be thinking about it correctly since Infinispan is pretty robust).

Any help would be greatly appreciated.

Thanks, Julien

user899757
  • 351
  • 2
  • 4
  • 21

1 Answers1

6

Did you check the tree module in Infinispan?

Galder ZamarreƱo
  • 5,027
  • 2
  • 26
  • 34