-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
25 lines (18 loc) · 970 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Yet Another Infinispan GUI demo written in Scala.
I'm new to Scala, so the code probably doesen't look like Scala.
This project is very early stage and there are a lot of limitations/bugs. Pull requests are highly welcomed!
This project uses GroupPanel from https://bitbucket.org/asflierl/grouppanel/wiki/Home, asflierl-grouppanel-release-1.2.3.
TODOs:
* kill all caches and cache panels
* auto resize cache bar capacity
* error dialog
* visualize hash
* fetch twitter stream into the cache
* runtime emulation. spawn threads that randomly insert/remove cache entries and start/stop caches
* shortcuts
* more scala style coding
FAQs:
* Entry Count doubled.
- It's because we have 1 backup copy for every entry, see hash.numOwners in infinispan-demo.xml.
* Entry Count shows stale/wrong value on rehash (during start/stop caches)
- Right, this happens when l1 is enabled. If disabled some entries leak, so this is a limitation for now. Will investigate later.