]
Dan Berindei updated ISPN-9082:
-------------------------------
Status: Resolved (was: Pull Request Sent)
Resolution: Done
Off Heap maxIdle expiration is not implemented
----------------------------------------------
Key: ISPN-9082
URL:
https://issues.redhat.com/browse/ISPN-9082
Project: Infinispan
Issue Type: Bug
Components: Expiration, Off Heap
Affects Versions: 9.2.1.Final
Reporter: Will Burns
Assignee: Will Burns
Priority: Major
Fix For: 11.0.0.Alpha1
Due to the usage of read/write locks Off Heap cannot easily update the last access time
of an off heap entry. It would have to release the read lock and try to acquire the write
lock to then finally update the last access time of an object. We would also have to
guarantee the address pointer hadn't changed between when the read and write lock were
obtained, since the value could have changed during that time period.