-
-
Notifications
You must be signed in to change notification settings - Fork 1
Conversation
Signed-off-by: Xuanwo <[email protected]>
Signed-off-by: Xuanwo <[email protected]>
Signed-off-by: Xuanwo <[email protected]>
Signed-off-by: Xuanwo <[email protected]>
Signed-off-by: Xuanwo <[email protected]>
Why this rfc is numbered 38? |
BTW, I am wondering why SSE pairs are considered service pairs, since they are supported by most services (although look different). So, what kind of feature can be considered global? |
What do you mean by 'language related details'? Do you mean SDKs in different languages? (And so we should follow API, but not SDK) Regarding this, I also came up with another question about the pair's type. Say, the customer key will be Base-64 encoded string in the header, but So |
Use the PR number as ID as golang and matrix do.
Because different services may have different behavior on it. For example, Behavior for According to SSE supports, the behavior is also very different. S3 supports three types and In general, If a pair could be used with no service type check, we can consider adding it into global service, otherwise, we need to keep it as service pair. // size & offset can be used in any service
_, err = store.Read("abc", pairs.WithSize(1024), pairs.Offset(4096))
// But s3 storage class can only be used in s3's store
var pairs []types.Pair
switch tp {
case s3.Type:
pairs = append(pairs, s3.WithStorageClass("STANDARD_IA"))
}
_, err = store.Read(“abc”, pairs...)
Yes.
From my point of view, So we use the |
Signed-off-by: Xuanwo <[email protected]>
Signed-off-by: Xuanwo [email protected]