Serializáció
Serializáció refers to the process of converting a data structure or object state into a format that can be stored (e.g., in a file or database) or transmitted (e.g., across a network) and then reconstructed later. This process is essential for tasks like saving program state, inter-process communication, and data persistence. The resulting format is typically a sequence of bytes or characters.
Different serialization formats exist, each with its own characteristics. Common formats include JSON (JavaScript Object Notation),
The process involves taking an object, breaking it down into its constituent parts, and encoding these parts