Hi, According to these tickets, now REST protocol interpret everything as String : https://issues.apache.org/jira/browse/IGNITE-3345 https://issues.apache.org/jira/browse/IGNITE-962
At this moment you can use *ConnectorMessageInterceptor *interface. Once you implement and configure it, you will start receiving a callback for all keys and values passed back and forth. So you can encode your object as a String somehow and then convert it to a real object inside interceptor. And the opposite: before returning object from the cache you can convert it to some String form. This is not very convenient, though it will allow you to go further without awaiting any tickets to be implemented. Evgenii 2018-01-04 14:34 GMT+03:00 Naveen <[email protected]>: > Hi > > Am using 2.3 > > What is the GET syntax for REST API for a cache which has a composite key. > > I have a cache which has a composite key - consisting of 2 columns > > Thanks > Naveen > > > > -- > Sent from: http://apache-ignite-users.70518.x6.nabble.com/ >
