]
RH Bugzilla Integration updated ISPN-5141:
------------------------------------------
Bugzilla Update: Perform
Bugzilla References:
SingleFileStore.process() should use sequential access
------------------------------------------------------
Key: ISPN-5141
URL:
https://issues.jboss.org/browse/ISPN-5141
Project: Infinispan
Issue Type: Bug
Components: Core
Affects Versions: 7.0.3.Final, 7.1.0.Beta1
Reporter: Dan Berindei
Assignee: Dan Berindei
Fix For: 7.2.0.Beta1, 7.2.0.Final
{{SingleFileStore.process()}} iterates over its keys in pseudo-random order. (It puts all
the entries in a {{HashSet}} and iterates it to minimize the amount of time it keeps the
global lock.)
It should instead either iterate the entries directly from the disk, or at least sort the
entries by their offset when iterating.