MCPcopy Create free account
hub / github.com/apache/cassandra-python-driver / read_stringmultimap

Function read_stringmultimap

cassandra/protocol.py:1422–1428  ·  view source on GitHub ↗
(f)

Source from the content-addressed store, hash-verified

1420
1421
1422def read_stringmultimap(f):
1423 numkeys = read_short(f)
1424 strmmap = {}
1425 for _ in range(numkeys):
1426 k = read_string(f)
1427 strmmap[k] = read_stringlist(f)
1428 return strmmap
1429
1430
1431def write_stringmultimap(f, strmmap):

Callers 1

recv_bodyMethod · 0.85

Calls 3

read_shortFunction · 0.85
read_stringFunction · 0.85
read_stringlistFunction · 0.85

Tested by

no test coverage detected