user1050755
user1050755

Reputation: 11691

Infinispan: storing large objects > RAM size?

Is it possible to use Infinispan for objects that are larger than the VM's total avilable RAM by supplying it with a store?

Update

I found this link which seems to indicate streaming support starting with infinispan 9: http://infinispan.org/docs/stable/user_guide/user_guide.html#hot_rod_protocol_2_6

Upvotes: 0

Views: 215

Answers (2)

Tristan Tarrant
Tristan Tarrant

Reputation: 1504

There is a Jira for this (https://issues.jboss.org/browse/ISPN-78) but it hasn't received attention in a long long time.

Upvotes: 0

Radim Vansa
Radim Vansa

Reputation: 5888

Infinispan is not designed for storing single huge object (or object graph), the expected data model are key-value pairs where each pair has kilobytes, or few MBs at most. The total number of such pairs is not limited, though.

Upvotes: 0

Related Questions