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

Function write_longstring

cassandra/protocol.py:1372–1376  ·  view source on GitHub ↗
(f, s)

Source from the content-addressed store, hash-verified

1370
1371
1372def write_longstring(f, s):
1373 if isinstance(s, str):
1374 s = s.encode('utf8')
1375 write_int(f, len(s))
1376 f.write(s)
1377
1378
1379def read_stringlist(f):

Callers 6

send_bodyMethod · 0.85
_write_query_paramsMethod · 0.85
send_bodyMethod · 0.85
send_bodyMethod · 0.85
send_bodyMethod · 0.85

Calls 2

write_intFunction · 0.85
encodeMethod · 0.45

Tested by 1