gorilla
gorilla copied to clipboard
An effective time-series data compression/decompression method based on Facebook's Gorilla.
Results
1
gorilla issues
Sort by
recently updated
recently updated
newest added
``` func Test_gorilla(t *testing.T) { var buf bytes.Buffer c, finish, err := gorilla.NewCompressor(&buf, 27550378*60) assert.NoError(t, err) for i := 27550378; i < 27550388; i++ { t.Log("write: ", uint32(i*60), float64(i)) assert.NoError(t,...