gpt4 book ai didi

java - 数据存储和内存缓存一致性 - Google App Engine 和 Objectify

转载 作者:行者123 更新时间:2023-11-30 08:15:53 24 4
gpt4 key购买 nike

我在确保数据存储区的一致性方面遇到了一个非常棘手的问题。我们正在尝试每 1 分钟 (cron) 对 BigQuery 执行一次同步作业,并依靠数据存储来存储上一次同步完成时间的时间戳。

当加载对象时,我们仍然看到最终一致性,我已经到了令人毛骨悚然的时间..

Settings 和 ParentClass 类都作为单例存储在 Datastore 中,即只有一个存在。

@Entity
public class Settings {

@Parent
private Key<ParentClass> parent = ParentClass.getKey();

@Id
private Long id = 123L;

...

public Settings save(){
ofy().cache(false).consistency(ReadPolicy.Consistency.STRONG).save().entity(this).now();
return this;
}

public static Settings get(){
Settings settings = ofy().cache(false).consistency(ReadPolicy.Consistency.STRONG).load().key(Key.create(ParentClass.getKey(), Settings.class, 123L)).now();
if (settings == null) settings = create();
return settings;
}

private static Settings create(){
return new Settings().save();
}

}

有谁知道导致最终一致的原因是什么?

编辑:web.xml 提取:

<filter>
<filter-name>ObjectifyFilter</filter-name>
<filter-class>com.googlecode.objectify.ObjectifyFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>ObjectifyFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

<filter>
<filter-name>asyncCacheFilter</filter-name>
<filter-class>com.googlecode.objectify.cache.AsyncCacheFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>asyncCacheFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

最佳答案

问题是 Objectify 的内部 session 缓存。

最初通过在第一次 load() 之前使用 ofy().clear() 手动清除缓存来解决,然后通过升级到 Objectify 5.1.5 进一步改进。

关于java - 数据存储和内存缓存一致性 - Google App Engine 和 Objectify,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28632271/

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