Apache Geode/ Gemfire 如何同步读取或写入其他数据源?
How Apache Geode/ Gemfire sysnchronous read or write to other data sources?
我从网上找到这张图片,是关于Gemfire结构的。
我很困惑 Gemfire 如何同步读取或写入其他数据源?
没有找到这方面的学习资料
谁能告诉我?非常感谢。
这种同步/异步读写是通过Events
和Listeners
完成的,这允许您将自己的应用程序代码插入到架构中。例如,CacheLoader
是同步读取的理想示例。您可以从 http://geode.apache.org/docs/guide/11/developing/events/chapter_overview.html 获得更多相关信息。
希望这可以帮助。
干杯。
我从网上找到这张图片,是关于Gemfire结构的。
我很困惑 Gemfire 如何同步读取或写入其他数据源?
没有找到这方面的学习资料
谁能告诉我?非常感谢。
这种同步/异步读写是通过Events
和Listeners
完成的,这允许您将自己的应用程序代码插入到架构中。例如,CacheLoader
是同步读取的理想示例。您可以从 http://geode.apache.org/docs/guide/11/developing/events/chapter_overview.html 获得更多相关信息。
希望这可以帮助。
干杯。