Skip to content

COH-32929 - Add ttl parameter in putAll() api of gRPC v0 implementation #279

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion etc/proto/common_messages_v1.proto
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2020, 2024, Oracle and/or its affiliates.
* Copyright (c) 2020, 2025, Oracle and/or its affiliates.
*
* Licensed under the Universal Permissive License v 1.0 as shown at
* https://oss.oracle.com/licenses/upl.
Expand Down Expand Up @@ -59,3 +59,19 @@ message BinaryKeyAndValue {
// The serialized binary value.
bytes value = 2;
}

// A message that contains a collection of string values.
message CollectionOfStringValues {
// The string values
repeated string values = 1;
}

// A collection of in32 values
message CollectionOfInt32 {
repeated int32 values = 1;
}

// A collection of in32 values
message CollectionOfInt64 {
repeated int64 values = 1;
}
Loading