Reputation: 337
The goal is to avoid having to deploy java classes to Gemfire/Geode servers.
The use-case only requires storage/retrieval of serialized objects. The keys would be Strings. There would be no use of server-side functions or OQL.
I'm aware that Gemfire/Geode PDX doesn't (in most cases) require java classes to be deployed to the Gemfire/Geode server. I'm curious what is possible when using plain old Java serialization.
Upvotes: 0
Views: 129
Reputation: 491
As long as there is no server side logic that will require deserializing the values, then I think it should work. Besides not using functions and OQL, and CacheListeners or CacheWriters would also require deserializing values on the server.
Upvotes: 1