dgryski / go-tsz

Time series compression algorithm from Facebook's Gorilla paper
BSD 2-Clause "Simplified" License
541 stars 66 forks source link

Gob encoding #6

Closed woodsaj closed 8 years ago

woodsaj commented 9 years ago

This allows Series to be serialized to a byte array for writing to disk or sending over the network. The byte array can then be read and the Series re-constructed with the original data and state.

This was built out of a need to be able restart an application using go-tsz without losing data.

dgryski commented 9 years ago

I've been trying to figure out how to merge this. It depends on the other two in the concurrency branch.

woodsaj commented 9 years ago

@dgryski yes this PR cant be merged until the concurrency PR is merged.

Dieterbe commented 8 years ago

I merged the corrency stuff. At raintank we're actually not using the Gob stuff anymore, it was too slow. We may end up implementing the msgp version later but for that we don't even have a need right now. I don't think we should merge any code that no one is using so i'm just going to close this.