<@U0F3291QE> when i get a chance tonight or this w...
# tornadofx
c
@edvin when i get a chance tonight or this weekend, i’m going to try making the listview use a FixedFragmentPool instead of a cache. I’ve seen JavaFX create ListCells for the visible items plus a few extra, so I figure that i can create a circular linked list of ItemFragments, say 100, that the ListView will draw off of. This value can be configurable. When de-queuing an item, I’ll first clear out any itemProperty value which unbinds everything. This should give us the cleanup that we’re missing. Then, ListCell gets an ItemFragment that’s ready to be set without any extra bindings. I don’t see a way to manage a cache without a way to expire the items.