gpt4 book ai didi

java - 监控elipselink缓存L2,L1

转载 作者:搜寻专家 更新时间:2023-11-01 03:21:25 25 4
gpt4 key购买 nike

是否有工具或程序化方法来监控eclipse链接的一级,二级缓存。我的目标是知道为某个类缓存的实体数量。这是我找到的一些链接,但它们还不够:

http://www.eclipse.org/eclipselink/documentation/2.5/solutions/performance002.htm https://wiki.eclipse.org/EclipseLink/Examples/JPA/Monitoring

最佳答案

JPA 没有指定此类功能,但是您可以使用 EclipseLink 内部组件来实现,例如:

L1(事务缓存,持久化上下文)

import org.eclipse.persistence.jpa.JpaEntityManager;
import org.eclipse.persistence.internal.sessions.UnitOfWorkImpl;
...
JpaEntityManager jem = em.unwrap(JpaEntityManager.class);
UnitOfWorkImpl ouw = jem.unwrap(UnitOfWorkImpl.class);
...
long count = countCachedEntitiesL1(clazz);

以及相应的方法:

// Java 7
public long countCachedEntitiesL1(Class clazz) {
long count = 0;
for (Map.Entry<Object, Object> entity : ouw.getCloneMapping().entrySet()) {
if (entity.getKey().getClass().equals(clazz)) {
count++;
}
}
return count;
}
// Java 8
public long countCachedEntitiesL1(Class clazz) {
return ouw.getCloneMapping().keySet().stream()
.filter(entity -> entity.getClass().equals(clazz))
.count();
}


L2(共享缓存)

import org.eclipse.persistence.jpa.JpaEntityManager;
import org.eclipse.persistence.sessions.server.ServerSession;
import org.eclipse.persistence.internal.sessions.IdentityMapAccessor;
...
JpaEntityManager jem = em.unwrap(JpaEntityManager.class);
ServerSession ss = jem.unwrap(ServerSession.class);
IdentityMapAccessor ima = (IdentityMapAccessor) ss.getIdentityMapAccessor();
...
int count = countCachedEntitiesL2(clazz);

以及相应的方法:

public int countCachedEntitiesL2(Class clazz) {
return ima.getIdentityMap(clazz).getSize();
}

关于java - 监控elipselink缓存L2,L1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29788936/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com