mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
Merge pull request #3802 from yichengq/fix-storage-watch
storage: delete key instead of setting it to false
This commit is contained in:
commit
dadfdf6af8
@ -305,25 +305,29 @@ func (s *watchableStore) notify(rev int64, ev storagepb.Event) {
|
|||||||
|
|
||||||
type ongoingTx struct {
|
type ongoingTx struct {
|
||||||
// keys put/deleted in the ongoing txn
|
// keys put/deleted in the ongoing txn
|
||||||
putm map[string]bool
|
putm map[string]struct{}
|
||||||
delm map[string]bool
|
delm map[string]struct{}
|
||||||
}
|
}
|
||||||
|
|
||||||
func newOngoingTx() *ongoingTx {
|
func newOngoingTx() *ongoingTx {
|
||||||
return &ongoingTx{
|
return &ongoingTx{
|
||||||
putm: make(map[string]bool),
|
putm: make(map[string]struct{}),
|
||||||
delm: make(map[string]bool),
|
delm: make(map[string]struct{}),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (tx *ongoingTx) put(k string) {
|
func (tx *ongoingTx) put(k string) {
|
||||||
tx.putm[k] = true
|
tx.putm[k] = struct{}{}
|
||||||
tx.delm[k] = false
|
if _, ok := tx.delm[k]; ok {
|
||||||
|
delete(tx.delm, k)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (tx *ongoingTx) del(k string) {
|
func (tx *ongoingTx) del(k string) {
|
||||||
tx.delm[k] = true
|
tx.delm[k] = struct{}{}
|
||||||
tx.putm[k] = false
|
if _, ok := tx.putm[k]; ok {
|
||||||
|
delete(tx.putm, k)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type watching struct {
|
type watching struct {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user