wangkuiyi / recordio

Apache License 2.0
11 stars 2 forks source link

Possible performance improvement #21

Closed zou000 closed 5 years ago

zou000 commented 5 years ago

currently, every write makes 2 memory copies, once from python to c, the other from c to go. Similarly for read. It might be possible to bypass c layer and directly copy between python and go.

wangkuiyi commented 5 years ago

Great idea!