Questions tagged [lzf]

A compression algorithm from the Lempel-Ziv family, as LZO or Google's snappy.

LZF is a data compression library which is suitable for data de-/compression in real-time: it favours speed over compression ratio like LZO, even if LZF favours more a low memory usage.

10 questions
8
votes
4 answers

What're lzo and lzf, and the differences?

Hi I heard of lzo and lzf and seems they are all compression algorithms. Are they the same thing? Are there any other algorithms like them(light and fast)?
Mickey Shine
  • 12,187
  • 25
  • 96
  • 148
3
votes
0 answers

Spark Streaming Error with snappy compression codec

I am getting the following exception on running my spark streaming job. The same job has been running fine since long and when I added two new machines to my cluster I see the job failing with the following exception. 16/02/22 19:23:01 ERROR…
Abhishek Anand
  • 181
  • 1
  • 8
2
votes
2 answers

LZF may compress with different algorithms

I am using libLZF for compression in my application. In the documentation, there is a comment that concerns me: lzf_compress might use different algorithms on different systems and even different runs, thus might result in different compressed…
JaredC
  • 5,150
  • 1
  • 20
  • 45
2
votes
1 answer

liblzf compress error Undefined symbols lzf_compress C++

I am trying to use LZF C++. However, when I compile it, it give me this error: g++ -o dist/Debug/GNU-MacOSX/cppapplication_2 build/Debug/GNU-MacOSX/lzf_c.o build/Debug/GNU-MacOSX/lzf_d.o build/Debug/GNU-MacOSX/main.o Undefined symbols for…
Adriansyah
  • 124
  • 11
2
votes
0 answers

Use LZF Compression instead GZIP with NginX

Is there a way to change the handler for compression from gzip to lzf in nginx ? Actual config: gzip on; gzip_disable "msie6"; gzip_vary on; gzip_proxied any; gzip_comp_level 6; gzip_buffers 16 8k; gzip_min_length …
Dario
  • 704
  • 2
  • 21
  • 40
1
vote
1 answer

Files needed to include when using liblzf

i want to use liblzf in my application that is written in c++ The description on the site says that It only uses 2 .c and 2 .h files but the tar.gz file contains 3 .h and 3 .c files. Can anyone tell me what should I only include in my application?
kuchi
  • 840
  • 11
  • 19
1
vote
0 answers

Database data compressed with Perl "Compress::LZF" won't decompress in Java

I am trying to decompress data stored in a database that was originally compressed with the Perl Compress::LZF module. The problem is that the header on the compressed data doesn't appear to match what the com.ning.compress.lzf library expects. Does…
pconrey
  • 5,805
  • 7
  • 29
  • 38
0
votes
1 answer

How to read LZF compressed HDF5 dataset?

I am trying to read a dataset that has the following properties: I am using HDF5 compiled static library for Visual Studio 2017. I have been mainly using the C++ API and had no problem with reading non-compressed datasets. How should I read LZF…
0
votes
0 answers

npm lzf module installation failure

I was trying to get the lzf module for my project, then an error occurred during the installation. Just as other people would have done I googled about the question, but couldn't find the right solution for my situation. lzf@0.3.0 install…
Daniel K
  • 31
  • 1
  • 5
0
votes
1 answer

How to use LZF or LZO filters to compress HDF5 file in Python?

My hdf5 file contains three arrays: ArrayA(30,100,100),ArrayB(100,100),ArrayC(100,100),how can I use LZF or LZO filters to compress them?
oops
  • 651
  • 3
  • 13
  • 20