如何在 apache geode 中创建物化视图?

How can i create a materialized view in apache geode?

我想获得基于 table 之间的多个连接的值,那么如何在 apache geode 中创建实体化视图。

Apache Geode 是一种高可用的内存数据存储,而不是常规的 RDBMS 系统,因此“实体化视图”概念甚至不存在。

我想你可以通过使用 CacheListeners and/or CacheWriters(参见 here) to update an extra Region (using a newly created thread to avoid problems). A simpler option would be to use a Function (see here)来模拟一些东西,每次都直接在服务器端简单地计算你需要的东西。

无论哪种方式,实际实施都与您的用例和 SLA 高度相关,因此我不适合推荐使用哪个选项。

干杯。