与deflater压缩线相比,LZ4并不快

时间:2016-04-01 09:03:25

标签: java compression lz4

我尝试使用LZ4压缩来压缩字符串对象。但结果不支持LZ4 这是我试过的程序

public class CompressionDemo {

    public static byte[] compressGZIP(String data) throws IOException {
        long start = System.nanoTime ();
        ByteArrayOutputStream bos = new ByteArrayOutputStream(data.length());
        GZIPOutputStream gzip = new GZIPOutputStream(bos);
        gzip.write(data.getBytes());
        gzip.close();
        byte[] compressed = bos.toByteArray();
        bos.close();
        System.out.println(System.nanoTime()-start);
        return compressed;
    }

    public static byte[] compressLZ4(String data) throws IOException {
        long start = System.nanoTime ();
        LZ4Factory factory = LZ4Factory.fastestJavaInstance();
        LZ4Compressor compressor = factory.highCompressor();
        byte[] result = compressor.compress(data.getBytes());
        System.out.println(System.nanoTime()-start);
        return result;

    }

    public static byte[] compressDeflater(String stringToCompress) {
        long start = System.nanoTime ();
        byte[] returnValues = null;
        try {
            Deflater deflater = new Deflater(Deflater.BEST_COMPRESSION);
            deflater.setInput(stringToCompress.getBytes("UTF-8"));
            deflater.finish();
            byte[] bytesCompressed = new byte[Short.MAX_VALUE];
            int numberOfBytesAfterCompression = deflater.deflate(bytesCompressed);
            returnValues = new byte[numberOfBytesAfterCompression];
            System.arraycopy(bytesCompressed, 0, returnValues, 0, numberOfBytesAfterCompression);
        } catch (Exception uee) {
            uee.printStackTrace();
        }
        System.out.println(System.nanoTime()-start);
        return returnValues;
    }



    public static void main(String[] args) throws IOException, DataFormatException {
        System.out
                .println("..it’s usually most beneficial to compress anyway, and determine which payload (the compressed or the uncompressed one) has the smallest size and include a small token to indicate whether decompression is required."
                        .getBytes().length);
        byte[] arr = compressLZ4("..it’s usually most beneficial to compress anyway, and determine which payload (the compressed or the uncompressed one) has the smallest size and include a small token to indicate whether decompression is required.");
        System.out.println(arr.length);
    }
}

enter image description here 我已经收集了如上所述的静力学。但LZ4并没有如上所述那么快 请告诉我我在哪里做错了。

1 个答案:

答案 0 :(得分:3)

您的结果毫无意义,因为压缩前的尺寸太小。您试图以超过100MB / s的速度测量几千字节的压缩。在JVM预热所花费的时间内,测量结果会丢失。再次尝试使用几MB的输入文件。你应该在这里得到符合我的LZ4实现的数字:https://github.com/flanglet/kanzi/wiki/Compression-examples