访问 gemfire 缓存中的动态区域
我在 gemfire 分布式缓存系统中使用动态区域工厂动态创建一些区域。 尽管这些区域存在于服务器缓存中(它们在我打印现有区域时出现),但如果我尝试使用 subRegion 方法获取它们,我会得到一个空指针作为回报。
动态区域是否可以通过其他方式访问,或者问题可能是什么?
i dynamically create some regions using dynamic region factory in a gemfire distributed cache system.
Although the regions exist in the server cache ( they appear when i print the existing regions) if i try to get them using the subRegion method i get a null pointer in return.
Are Dynamic Regions accessed other way, or what could the problem be?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须先使用 FunctionAdapter 在服务器上创建区域(或检查区域是否存在),然后在 c++ 客户端上创建镜像版本(具有相同路径的本地区域)
You have to use a FunctionAdapter to create the region (or check if the region exists) on the server first , then, create a mirrored version (a local region with the same path) on the c++ client