与 Gemfire 客户端应用程序相关的问题

Questions related to Gemfire client applications

您可以使用 GemFire 安全性来创建只读客户端。您将需要在服务器端实现 com.gemstone.gemfire.security.AccessControl 接口以拒绝来自客户端的所有写请求。您还希望在服务器上实现 Authenticator 接口以建立客户端的身份。

您需要使用 AuthInitialize 回调从客户端传递凭据。详情请参考security section of the documentation and this wiki page

关于你的第二个问题,我想问一下你的客户端是否能够缓存所有服务器端数据,为什么你需要一个client/server架构?您不能将服务器嵌入到您的应用程序本身吗?