I'm stuck on stage #jz6

I’m stuck on Stage #jz6

I am unable to find the LZF algorithm implementation. It seems there are so many algorithms of type LZ.

@Pal-Anmol You can safely ignore the LZF algorithm for now, because our Redis challenge doesn’t require you to decompress any data with LZF.

@andy1li LZF decompression is required to parse
Redis RDB File Format no?

You may assume that nothing in the RDB files you manage is LZF-compressed, and you can error out when you encounter something that is encoded in it.

1 Like

LZF decompression is required to parse Redis RDB File Format no?

If a Redis RDB file contains any LZF compressed data, yes. However, our challenge doesn’t involve LZF, so no, it’s not required to pass the tests.

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.