Skip to content

Instantly share code, notes, and snippets.

@snicaise
Last active December 25, 2015 21:39
Show Gist options
  • Save snicaise/7043833 to your computer and use it in GitHub Desktop.
Save snicaise/7043833 to your computer and use it in GitHub Desktop.
Récupérer des informations sur ehcache en OQL (eclipse MAT)

Taille

SELECT toString(name), @retainedHeapSize FROM net.sf.ehcache.Cache

Stats

SELECT toString(name), memoryStoreHitCount, diskStoreHitCount, hitCount, missCountNotFound, missCountExpired, @retainedHeapSize FROM net.sf.ehcache.Cache

Paramétrage

SELECT toString(name), maxElementsInMemory, timeToLiveSeconds, timeToIdleSeconds, overflowToDisk FROM net.sf.ehcache.Cache

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment