You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to see some functions to facilitate building a framed snappy
stream. Some functions that would be helpful:
EncodeFrame(dst, src []byte)
StartFrames(dst)
FinishFrames(dst)
Please provide any additional information below.
The official snappy repository has a document describing the framing format for
snappy (http://code.google.com/p/snappy/source/browse/trunk/framing_format.txt)
Original issue reported on code.google.com by jehiah on 19 Jul 2012 at 3:58
The text was updated successfully, but these errors were encountered:
I've taken an initial pass at implementing Reader/Writers for the framing
format at https://github.com/twotwotwo/sz/ but caveat emptor to the max: there
is no test suite, this is immature code, etc. More detail is at
https://code.google.com/p/snappy-go/issues/detail?id=4#c1
With two days of hard work, I've implemented the framing for snappy:
github.com/tgulacsi/sz
Then I've found this issue :)
At least the command-line client is usable (now using
github.com/mreiferson/go-snappystream):
go get github.com/tgulacsi/sz
Original issue reported on code.google.com by
jehiah
on 19 Jul 2012 at 3:58The text was updated successfully, but these errors were encountered: