-
Notifications
You must be signed in to change notification settings - Fork 72
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
feat: add put and delete ops to kv #1325
feat: add put and delete ops to kv #1325
Conversation
Your org requires the Graphite merge queue for merging into mainAdd the label “merge-queue” to the PR and Graphite will automatically add it to the merge queue when it’s ready to merge. You must have a Graphite account and log in to Graphite in order to use the merge queue. Sign up using this link. |
d143f31
to
741ae58
Compare
85ebff2
to
e25118e
Compare
741ae58
to
a824159
Compare
e25118e
to
b4e3120
Compare
a824159
to
9ee2eed
Compare
b4e3120
to
c4b66e2
Compare
9ee2eed
to
0ddcd1f
Compare
c4b66e2
to
e67371f
Compare
0ddcd1f
to
7aa0639
Compare
e67371f
to
31e4ca3
Compare
7aa0639
to
ee8c2e1
Compare
31e4ca3
to
fec751b
Compare
ee8c2e1
to
e984896
Compare
fec751b
to
35e0eea
Compare
e984896
to
3623ffe
Compare
35e0eea
to
14db016
Compare
3623ffe
to
964ab8c
Compare
14db016
to
0ce4f25
Compare
|
||
let existed = db | ||
.run(|tx, _maybe_committed| async move { | ||
let existed = tx.get(bkey, false).await?.is_some(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thinking we should get rid of the bool in the response and just run clear. goal is to map kv as close to fdb as possible with as little overhead. thoughts?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oops mean to request changes, see comment
964ab8c
to
4c97cb2
Compare
0ce4f25
to
2a4c72d
Compare
4c97cb2
to
c8e700d
Compare
2a4c72d
to
3d1f602
Compare
c8e700d
to
34b33ed
Compare
3d1f602
to
58322ba
Compare
Merge activity
|
<!-- Please make sure there is an issue that this PR is correlated to. --> ## Changes <!-- If there are frontend changes, please include screenshots. -->
Changes