How to force a cache to be in memory only in private cloud (think PCI or HIPPA compliance)

Not applicable

So i know in cloud - we can get PCI or HIPPA complaint installations. One thing this does is force cache to not keep data at rest on disk (basically -the cache never gets to cassandra - i think...) Is this something we can do in private cloud to play around with performance?

Solved Solved
0 2 158
1 ACCEPTED SOLUTION

adas
New Member

@Benjamin Goldman Yes you could turn of persistent cache (basically using Cassandra as a cache datastore). You need to turn off the following property on the message processors' cache.properties file:

second.level.cache.enabled=false

This would make sure that cache is never persisted in Cassandra and stays in-memory.

View solution in original post

2 REPLIES 2

adas
New Member

@Benjamin Goldman Yes you could turn of persistent cache (basically using Cassandra as a cache datastore). You need to turn off the following property on the message processors' cache.properties file:

second.level.cache.enabled=false

This would make sure that cache is never persisted in Cassandra and stays in-memory.

Thank You!