| Projects on Google Code | Results 1 - 10 of 68 |
Serialization / Deserialization
php serialize / unserialize implementation in Python (with php-objects support)
Designed for copypasting. Get it here: http://code.google.com/p/php-serialize/source/browse/trunk/phpserialize.py and save to "phpserialize.py" file in your project.
Usage:
{{{
>>> import phpserialize
>>> print ...
{{{
MyObject myObject = new MyObject();
// Wrap myObject into a SerializableObject instance
using (SerializableObject serializableMyObject = new SerializableObject(myObject))
{
// Access myObject serializable members by name
// data type conversion is performed automatically
ser...
= What is it? =
Mxl is a [http://fr.wikipedia.org/wiki/Extensible_Markup_Language XML]-like language that allows to describe structured data. It is mainly inspired by [http://fr.wikipedia.org/wiki/JavaScript_Object_Notation JSON]. The main differences between XML/JSON and Mxl are:
* Lighter sy...
"Protocol Buffers" is a binary serialization format and technology, released to the open source community by Google in 2008.
There are various implementations of Protocol Buffers in .NET. This project is a fairly close port of the Google Java implementation.
There are two main parts:
{{{Pro...
Java has a very convenient way to save and transport objects built into the VM in he form of Java binary serialization.
However, serialization has some serious limits. Chief among these is that the serialized objects are a "sealed block" that must be deserialized by code similar to that which se...
A Generic Object Pool for .NET with built-in support for asynchronous operations and concurrent updates.
This project is based on *[http://serializableobject.googlecode.com serializableobject]*.
Serialization of java classes for deployment on low memory platforms.
==Objectives==
Soon after the project started it stopped being just about thrit and protobuf, but the name stays.
the project is about comparing serialization performance and other aspects of serialization libraries on the JVM. Overall we have benchmarks for [http://code.google.com/p/protobuf/ pro...
thrift,
protobuf,
serialization,
performance,
benchmark,
avro,
protocolbuffers,
json,
sbinary,
xstream,
stax,
binaryxml,
scala,
java,
javolution
===Summary===
JsonExSerializer is a serializer/deserializer framework for C# that uses JSON format for its storage format. A small number of [Extensions extensions] are added to facilitate correct reconstruction of the object upon deserialization. It is mainly intended to serialize objects to and...