Sign in
apache
/
incubator-resilientdb-python-sdk
/
refs/heads/main
/
.
/
service
/
kv_service
/
proto
/
kv_server.proto
blob: dd14cb7bc768c86727a67cc1846592f8fff11034 [
file
] [
log
] [
blame
]
syntax
=
"proto3"
;
package
sdk
;
message
KVRequest
{
enum
CMD
{
NONE
=
0
;
SET
=
1
;
GET
=
2
;
GETALLVALUES
=
3
;
GETRANGE
=
4
;
}
CMD cmd
=
1
;
string
key
=
2
;
bytes
value
=
3
;
}
message
KVResponse
{
string
key
=
1
;
bytes
value
=
2
;
}