Repository: incubator-ignite Updated Branches: refs/heads/ignite-843 52b4244d5 -> bfcea3393
# IGNITE-843 Fixed tooltip. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/37cf3b0b Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/37cf3b0b Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/37cf3b0b Branch: refs/heads/ignite-843 Commit: 37cf3b0bb2ed5d2cce8d1251715f6eba6c898c94 Parents: 52b4244 Author: AKuznetsov <akuznet...@gridgain.com> Authored: Fri Jun 19 10:53:48 2015 +0700 Committer: AKuznetsov <akuznet...@gridgain.com> Committed: Fri Jun 19 10:53:48 2015 +0700 ---------------------------------------------------------------------- modules/webconfig/nodejs/public/form-models/caches.json | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/37cf3b0b/modules/webconfig/nodejs/public/form-models/caches.json ---------------------------------------------------------------------- diff --git a/modules/webconfig/nodejs/public/form-models/caches.json b/modules/webconfig/nodejs/public/form-models/caches.json index 5642f8c..33470d0 100644 --- a/modules/webconfig/nodejs/public/form-models/caches.json +++ b/modules/webconfig/nodejs/public/form-models/caches.json @@ -59,9 +59,14 @@ "tip": [ "Memory modes:", "<ul>", - " <li>ONHEAP_TIERED - in this mode entries will be stored on-heap first.</li>", - " <li>OFFHEAP_TIERED - distributed caches will start immediately and will load all necessary data from other available grid nodes in the background.</li>", - " <li>OFFHEAP_VALUES - in this mode no rebalancing will take place which means that caches will be either loaded on demand from persistent store whenever data is accessed, or will be populated explicitly.</li>", + " <li>ONHEAP_TIERED - entries are cached on heap memory first.", + " <ul>", + " <li>If offheap memory is enabled and eviction policy evicts an entry from heap memory, entry will be moved to offheap memory. If offheap memory is disabled, then entry is simply discarded.</li>", + " <li>If swap space is enabled and offheap memory fills up, then entry will be evicted into swap space. If swap space is disabled, then entry will be discarded. If swap is enabled and offheap memory is disabled, then entry will be evicted directly from heap memory into swap.</li>", + " </ul>", + " </li>", + " <li>OFFHEAP_TIERED - works the same as ONHEAP_TIERED, except that entries never end up in heap memory and get stored in offheap memory right away. Entries get cached in offheap memory first and then get evicted to swap, if one is configured.</li>", + " <li>OFFHEAP_VALUES - entry keys will be stored on heap memory, and values will be stored in offheap memory. Note that in this mode entries can be evicted only to swap.</li>", "</ul>" ] },