Yahoo Web Search

Search results

  1. blog.christianlehnert.dev › understanding-serialization-in-javaJava Serialization Explained

    Jun 14, 2024 · Learn about Java serialization, a process to convert objects into bytes for storage or network calls, and how to implement it with versioning.

  2. coderspacket.com › posts › serialization-in-pythonSerialization in Python

    Jun 12, 2024 · Python’s __getstate__ () and __setstate__ () methods, or the __getnewargs__ () method for pickle, let you build custom serialization and deserialization methods for your objects. You can manage the serialization and deserialization of the object by implementing these methods in your class.

    • Alekhya
  3. Jun 24, 2024 · Once serialized, the object can be transmitted over networks or stored in files, databases, or other forms of persistent storage. Later, these byte streams can be deserialized—converted back into objects—recreating the original object’s state, structure, and behavior.

    • Intellipaat
  4. Jun 27, 2024 · Caching serialized strings can improve performance by avoiding redundant serialization of the same object or array. By storing the serialized string and reusing it in subsequent tests, developers can save time and resources, especially when dealing with large or complex data structures.

  5. 3 days ago · Serializing Python functions has several benefits. Firstly, it allows us to save the state of a function, including its code, variables, and internal state. This means that we can pause the execution of a function and resume it later without losing any progress. Secondly, serialization enables us to share functions across different platforms or ...

  6. Jun 21, 2024 · A tool to dump and rebuild Java serialization streams and Java RMI packet contents in a more human readable form. The tool does not deserialize the stream (i.e. objects in the stream are not instantiated), so it does not require access to the classes that were used in the stream*.

  7. html.spec.whatwg.org › multipage › structured-dataHTML Standard

    4 days ago · To support passing JavaScript objects, including platform objects, across realm boundaries, this specification defines the following infrastructure for serializing and deserializing objects, including in some cases transferring the underlying data instead of copying it.