Skip to content
This repository was archived by the owner on Mar 6, 2025. It is now read-only.

Latest commit

 

History

History
21 lines (18 loc) · 600 Bytes

File metadata and controls

21 lines (18 loc) · 600 Bytes

Yet Another Data Serializer

This's a Lua serializer that's both fast and compact. It encodes both primitive and complex Lua data using binary encoding. The serializer was designed for LuaJIT, but it also supports Lua. However, 100% performance's not guaranteed.

The goal of this project's to make a faster and more compact serializer.

API

Calls for serialization:

yads.serial(any)
yads.serialize(any)
yads.encode(any)

Calls for deserialization:

yads.deserial(any)
yads.deserialize(any)
yads.decode(any)