About 15,800,000 results
Open links in new tab
  1. Serialization - Wikipedia

    In computing, serialization (or serialisation, also referred to as pickling in Python) is the process of translating a data structure or object state into a format that can be stored (e.g. files in …

  2. What is Serialization? A Complete Guide for Beginners

    Jan 11, 2025 · Serialization allows arbitrary data structures to get stored directly into compact databases and files in a portable fashion. For example, freezing user profile objects into simple …

  3. What is Serialization? - freeCodeCamp.org

    Jan 10, 2022 · Serialization is the process in which one service takes in a data structure, such as a dictionary in Python, wraps it up, and transmits it to another service for reading.

  4. What is serialization and how does it work? | Hazelcast

    What Is Serialization? Serialization is the process of converting a data object—a combination of code and data represented within a region of data storage—into a series of bytes that saves …

  5. Serialization and Deserialization in Java - GeeksforGeeks

    Jun 2, 2025 · Serialization helps us to save the current state of an object so that we can use it further and share complex data between different systems. In this article, we will discuss a lot …

  6. What Are Serialization and Deserialization in Programming?

    Mar 18, 2024 · Serialization is the process of converting an object’s state to a byte stream. This byte stream can then be saved to a file, sent over a network, or stored in a database.

  7. Serialization - .NET | Microsoft Learn

    Oct 25, 2023 · Serialization is the process of converting the state of an object into a form that can be persisted or transported. The complement of serialization is deserialization, which converts …

  8. language agnostic - What is Serialization? - Stack Overflow

    Mar 11, 2009 · Serialization is the process of converting unordered data (such as an object) into a series of tokens which can be used later to reconstruct the original data. The serialized form is …

  9. Understanding Serialization and Deserialization ... - DEV Community

    Sep 6, 2024 · Serialization is the process of converting an object or data structure into a format that can be easily stored (e.g., in a file or database) or transmitted (e.g., over a network).

  10. Serialization - Glossary | MDN

    Jul 11, 2025 · Serialization The process whereby an object or data structure is translated into a format suitable for transfer over a network, or storage (e.g., in an array buffer or file format).