7
votes
4answers
361 views
what is php serialize for
I just learned about serialize() and unserialize() functions today and I think it is really cool but I am wondering what are some good uses for this? I know people serialize thing …
7
votes
4answers
443 views
What JSON library works well for you in .NET?
I'd be interested in hearing what JSON library folks in the community have been using inside of .NET? I have a need to parse/serialize some JSON object graphs from inside .NET (C# …
5
votes
4answers
3k views
How do I use jQuery’s form.serialize but exclude empty fields
I have a search form with a number of text inputs & drop downs that submits via a GET. I'd like to have a cleaner search url by removing the empty fields from the querystring w …
5
votes
5answers
745 views
Python human readable object serialization
Hi,
i need to store Python structures made of lists / dictionaries, tuples into a human readable format. The idea is like using something similar to pickle, but pickle is not human …
3
votes
4answers
76 views
Serialising and immutable objects
I have a class which is intended for immutable use, hence I would like to label all the fields final.
However the class is serialized and deserialized to send over the network. Fo …
3
votes
10answers
391 views
serialize a large array in PHP?
I am curious, is there a size limit on serialize in PHP. Would it be possible to serialize an array with 5,000 keys and values so it can be stored into a cache?
I am hoping to cac …
3
votes
1answer
51 views
Transforming Point object when using simple-xml
I am serializing a class using simple-xml (http://simple.sourceforge.net/) but when i try to use @Element on a Point object i get an error, how can i transform this Point object?
2
votes
2answers
49 views
Problem Serialization
I'm getting the following Exception: There was an error reflecting type 'ValoradorHC.estruturas.dispoHotel'. when i try to Serialize my class
My code is:
Public Function getXMLd …
2
votes
1answer
60 views
Serialize Specialized List<>
Hi everyone,
I have a specialized class, BusinessObjectList, with this declaration:
public class BusinessObjectList<T> : List<BusinessObject> where T: BusinessObject …
2
votes
6answers
114 views
Serializing a very large list
Hi, I'm gettint a large amount of data from a database query and I'm making objects of them. I finally have a list of these objects (about 1M of them) and I want to serialize that …
2
votes
2answers
103 views
Can Cocoa Touch UI objects be serialized, transmitted over a network, and reconstituted on a client?
I've been working on and off with a team that's developing an iPhone app. Like a lot of other developers new to Cocoa Touch, we decided to create a hybrid Cocoa-Web app which was e …
2
votes
7answers
2k views
jquery serialize and $.post
I'm trying to send a lot of data from a form using the $.post method in jQuery. I've used the serialize() function first to make all the form data into one long string which I will …
2
votes
3answers
355 views
I have a Single File And need to serialize multiple objects randomly.how can Iin c# ??
I have a single file and need to serialize multiple objects of the same class when ever a new object is created. I can't store them in arrays as I need to serialize them the instan …
2
votes
4answers
516 views
Enforcing serializable from an interface without forcing classes to custom serialize in C#.
I have an interface that defines some methods I would like certain classes to implement.
public interface IMyInterface
{
MethodA;
MethodB;
}
Additionally I would like a …
1
vote
5answers
76 views
Does Java Serialization work for cyclic references?
For example: Object A contains Object B that contains Object C that contains Object A.
Will Object A serialize properly?
Comment #9 here indicates that it does not work .
In co …
