aerospike / aerospike-client-java

Aerospike Java Client Library
Other
236 stars 212 forks source link

Is there documentation on response byte layout #165

Closed probtask closed 4 years ago

probtask commented 4 years ago

I am poking around with the java client a bit, but find it a bit hard to understand how to parse the response without a doc. Is there response memory layout lying somewhere?

For example figuring out how to read the dataBuffer can be a bit of a pain if I don't already know the layout.

BrianNichols commented 4 years ago

We used to document our wire protocol and some customers even wrote custom clients using those documents, but we now highly discourage using custom clients.

The reason is product features are constantly being added/refined and it's too difficult to guarantee compatibility for all versions of the wire protocol specification.

probtask commented 4 years ago

Ah I see, thanks