Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Compresses Lua string bytes with LZ4 block compression and returns the raw compressed bytes as a Lua string.
lz4compress(data: string): string
crypt.lz4compress
crypt.lz4.compress
lz4.compress
data
string
compressed
local source = string.rep("Real Docs ", 100) local compressed = lz4compress(source) local restored = lz4decompress(compressed, #source) print(#source, #compressed, restored == source)