MCPcopy Create free account
hub / github.com/FoundationDB/fdb-document-layer / set

Method set

src/QLContext.actor.cpp:581–581  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

579 return layers->getDescendants(tr, prefix, begin, end, flowControlLock);
580 }
581 virtual void set(StringRef key, ValueRef value) { layers->set(tr, DataKey(prefix).append(key), value); }
582 virtual void clearDescendants() { layers->clearDescendants(tr, prefix); }
583 virtual void clear(StringRef key) { layers->clear(tr, DataKey(prefix).append(key)); }
584 virtual void clearRoot() { layers->clear(tr, prefix); }

Callers

nothing calls this directly

Calls 3

DataKeyClass · 0.85
appendMethod · 0.80
setMethod · 0.45

Tested by

no test coverage detected