To evict a part of memory is to clear its contents to make space for new data
Questions tagged [evict]
52 questions
0
votes
0 answers
Is there a way to map two variables to same cache set in ARM?
I have been trying to implement a Cache Side Channel attack on ARM. Since ARM doesn't have any instruction or function (similar to cflush) defined to flush the cache contents, I am trying to achieve this by Evict+Reload method. This method requires…

Balvansh Heerekar
- 85
- 1
- 13
0
votes
1 answer
Is there any way to turn off eviction in kubelet?
According to this article it is the only way to preserve system pods when eviction might happen. I was wondering if there is chance to turn off eviction mechanism and keep all pods - allow starvation in kubelet configuration? I would like to keep…

Michał Dygas
- 69
- 7
0
votes
1 answer
hazelcast - map eviction stats
Eviction from a hazelcast IMap could happen due to either ttl getting expired, or due to some threshold getting hit due to eviction policy settings.
But does management center or the java object itself provide any stats on how may entries were…

neeraj
- 1,191
- 4
- 19
- 47
0
votes
2 answers
Must Nhibernate Session.Evict() act on a proxy object? (Or is there an alternative way to clone a persisted object graph?)
I am trying to create a clone of a persisted object graph and it seems like Session.Evict(PersistedObject) is the way to do this. By removing the instance from the Session cache, I can then set persist it as a new "cloned" record.
I have tried three…

Adam Hey
- 1,512
- 1
- 20
- 24
0
votes
2 answers
How do I evict (through annotations) from my second-level ehcache using a partial key?
I’m using Hibernate 4.3.11.Final with ehcache and Spring 3.2.11.RELEASE. I have the below Spring/ehcache configuration …

Dave
- 15,639
- 133
- 442
- 830
0
votes
1 answer
Evict 2nd level cache items Syscache/Nhibernate
I am using NHibernate 3.3 with Syscache 2nd level cache and I am trying to evict an object from the 2nd level cache, but it doesn't seem to work.
I am using this code based on other examples:
var CollectionCache =…

Kees de Winter
- 1
- 1
-1
votes
1 answer
How to let Spring Boot evict single entries in cache after a certain TimeToLive (TTL)
Update (tl;dr)
Single entries shall be evicted from Cache after their TTL is due.
Setup:
Java: 17
spring-boot.version: 3.0.x
Objective
Requests providing an ID (each) are asking for data.
The data is stored in a repository - we can assume any…

d.braun1991
- 151
- 1
- 13