MCPcopy Create free account
hub / github.com/apple/foundationdb / persistTagMessageRefsKey

Function persistTagMessageRefsKey

fdbserver/TLogServer.actor.cpp:239–246  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

237}
238
239static Key persistTagMessageRefsKey(UID id, Tag tag, Version version) {
240 BinaryWriter wr(Unversioned());
241 wr.serializeBytes(persistTagMessageRefsKeys.begin);
242 wr << id;
243 wr << tag;
244 wr << bigEndian64(version);
245 return wr.toValue();
246}
247
248static Key persistTagPoppedKey(UID id, Tag tag) {
249 BinaryWriter wr(Unversioned());

Calls 3

UnversionedFunction · 0.85
serializeBytesMethod · 0.45
toValueMethod · 0.45

Tested by

no test coverage detected