Compress::LZF

acme on 2006-11-30T09:59:22

Disk space and memory are cheap, but storing lots of things adds up. Enter Compress::LZF:

LZF is an extremely fast (not that much slower than a pure memcpy) compression algorithm. It is ideal for applications where you want to save some space but not at the cost of speed.
That says it all - it makes things a little smaller, is blindingly fast and also has sfreeze and sthaw methods.