meteorgan
meteorgan
``` #/usr/bin/env python #coding: utf-8 import redis from multiprocessing import Process def get_value(host, port, var): r = redis.Redis(host=host, port=port) return r.get(var) def lost_update(host, port, var): r = redis.Redis(host=host, port=port) pipe...
test 1: mget number1 number3 should return 4 15. redis 127.0.0.1:6370> get number3 "15" redis 127.0.0.1:6370> multi OK redis 127.0.0.1:6370> mget number1 number3 QUEUED redis 127.0.0.1:6370> set number3 20 QUEUED...
about list blocking operations, still have some problems: 1. not support multi keys. supporting multi keys in multi keyNode needs much more works. 2. the scheduler in the block function...
As mentioned in https://github.com/apache/opendal/pull/5106 > `Ceph Rados` differs from `S3` in its handling of the `key-marker` parameter. in `Ceph`, it's **inclusive**. but in S3, it's **exclusive** This causes `S3` and...
# Which issue does this PR close? None # Rationale for this change As discussed in: https://github.com/apache/opendal/pull/5132#issuecomment-2371739376 We should return `Unsupported` error for every operation with version when` versioning` is...
# Which issue does this PR close? Part of https://github.com/apache/opendal/issues/2611. # Rationale for this change # What changes are included in this PR? # Are there any user-facing changes?
### Feature Description delete all test files permanently after running tests ### Problem and Solution #### Current behaviors 1. some test files are generated by `TEST_FIXTURE`, they gets deleted automatically...
Currently, the `write` operation does not return any metadata. As a result, in PR #5132, all `versioning` tests utilize the `stat` operation to retrieve the current object versions. Once the...
### Feature Description When performing a `List` request, list all object versions, including the deleted ones. ### Problem and Solution Add a `deleted` parameter to the `List` operation, when set...