mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 21:18:31 +00:00
9628d2632f
This change creates a proper `distribution` modules in which we have today packaging for all of our four current packages: * zip * tar.gz * rpm * deb Licenes have moved into the distribution project as well. So have the config/ and the bin/ directory from the core/ project. The RPM package is now built, if rpmbuild exists. The bats tests have been moved as well. Also the zip distribution now executes the REST integration tests.
25 lines
807 B
Plaintext
25 lines
807 B
Plaintext
# Compress LZF
|
|
|
|
This library contains efficient implementation of LZF compression format,
|
|
as well as additional helper classes that build on JDK-provided gzip (deflat)
|
|
codec.
|
|
|
|
## Licensing
|
|
|
|
Library is licensed under Apache License 2.0, as per accompanying LICENSE file.
|
|
|
|
## Credit
|
|
|
|
Library has been written by Tatu Saloranta (tatu.saloranta@iki.fi).
|
|
It was started at Ning, inc., as an official Open Source process used by
|
|
platform backend, but after initial versions has been developed outside of
|
|
Ning by supporting community.
|
|
|
|
Other contributors include:
|
|
|
|
* Jon Hartlaub (first versions of streaming reader/writer; unit tests)
|
|
* Cedrik Lime: parallel LZF implementation
|
|
|
|
Various community members have contributed bug reports, and suggested minor
|
|
fixes; these can be found from file "VERSION.txt" in SCM.
|