33 lines
1.3 KiB
Markdown
33 lines
1.3 KiB
Markdown
|
# go-tsz
|
||
|
|
||
|
* Package tsz implement time-series compression http://www.vldb.org/pvldb/vol8/p1816-teller.pdf in Go*
|
||
|
|
||
|
[](https://github.com/dgryski/go-tsz/tree/master)
|
||
|
[](https://travis-ci.org/dgryski/go-tsz?branch=master)
|
||
|
[](https://coveralls.io/github/dgryski/go-tsz?branch=master)
|
||
|
[](https://goreportcard.com/report/github.com/dgryski/go-tsz)
|
||
|
[](http://godoc.org/github.com/dgryski/go-tsz)
|
||
|
|
||
|
## Description
|
||
|
|
||
|
Package tsz implement the Gorilla Time Series Databasetime-series compression as described in:
|
||
|
http://www.vldb.org/pvldb/vol8/p1816-teller.pdf
|
||
|
|
||
|
|
||
|
## Getting started
|
||
|
|
||
|
This application is written in Go language, please refer to the guides in https://golang.org for getting started.
|
||
|
|
||
|
This project include a Makefile that allows you to test and build the project with simple commands.
|
||
|
To see all available options:
|
||
|
```bash
|
||
|
make help
|
||
|
```
|
||
|
|
||
|
## Running all tests
|
||
|
|
||
|
Before committing the code, please check if it passes all tests using
|
||
|
```bash
|
||
|
make qa
|
||
|
```
|