Kryo is a space-efficient Java serialization library
0
votes
1answer
40 views
How do you deserialize immutable collection using Kryo?
How do you deserialize immutable collection using Kryo ? Do I need to register something in addition to what I've done ?
Here is my sample code
import com.esotericsoftware.kryo.Kryo
import ...
0
votes
0answers
21 views
jboss memcacehd kryo flex
I have a jboss 5.1 AS in which i m trying to implement session replication with memcached and kryo serialization . Everything is working fine , but i have a page in my application which has to its ...
9
votes
2answers
248 views
Dealing with an incompatible version change of a serialization framework
Problem description
We have a Hadoop cluster on which we store data which is serialized to bytes using Kryo (a serialization framework). The Kryo version which we used to do this has been forked from ...
0
votes
0answers
48 views
Kryo: How to use the CollectionSerializer with Scala?
Using CollectionSerializer to write is straight forward enough, but how do I de-serialize the byte array. CollectionSerial.
I would expect to be able to do something like this (given the interface):
...
0
votes
0answers
91 views
Java serialization of very large objects
I'm facing the following issue: I would like to serialize a very large object (several hundreds of MB in memory) to a file.
As I understood that Kryo is one of the best serialization libraries out ...
0
votes
1answer
35 views
How to use Kryo with RMI
I see a lot of questions about if Kryo can be used to replace default JVM serialization that RMI uses, but nothing in the way of how to actually set it up. I've heard that Kryo is a "drop-in" ...
0
votes
2answers
183 views
Kryo cannot serialize a java.sql.Timestamp?
Edit: Using Kryo 1.04
I'm right now serializing a User class that contains a java.sql.Timestamp field in Scala. For some reason, Kryo can't find a zero-arg constructor and throws an error:
Caused ...
1
vote
0answers
101 views
Serializing and Deserializing Object Arrays in Kryo
I've been testing Kryo for serialization and deserialization recently and have generally been happy with it, however it is not clear to be how to handle the (de)serialization of a class which contains ...
1
vote
1answer
175 views
kryo list serialization
I am trying to serialize a List of List of some objects (of a customized class: List> ), using Kryo.
list2D; // List<List<MyClass>> which is already produced.
Kryo k1 = new Kryo();
...
1
vote
1answer
716 views
Kryonet disconnects just after connecting
I followed this Youtube tutorial covering the basics of Kryonet.
Basically it is a Kryonet Hello World, it explains how to setup a basic Server and a Client, allowing the Client to send Packets to ...
0
votes
0answers
39 views
How do I detect “End of File” in Kryo?
I'm reading an unknown number of objects from a gzipped file in Kryo:
Input input = new Input(new GZIPInputStream(Files.newInputStream(inputFile)));
The problem is: How do I detect when I've read ...
2
votes
1answer
317 views
Java serialization, Kryo and the object graph
Lets say I have an array arr of objects of type A in memory, each of which has a reference field pointing to the same object B.
Illustration:
A_1 A_2 A_3 ... A_N
| | | |
| | V ...
1
vote
1answer
124 views
Serialization events in Kryo
How do you receive serialization events? You can define
void writeObject(ObjectOutputStream out) {
// handle event
out.defaultWriteObject(this);
}
in java serialization and this method will be ...
1
vote
1answer
668 views
Automatic class registration in Kryo
As I understand, Kryo creates a className<->numberID map in every writeObject. This map is too narrow. Because in your object model, instances tend to belong to the same classes, next writeObject ...
1
vote
1answer
82 views
Exception only on Android 3.0
I am using Kryonet for an Android app, and works perfectly on all Android versions but the 3.0 version. I am getting the following exception:
E/AndroidRuntime(16861): FATAL EXCEPTION: Thread-30
...
0
votes
1answer
279 views
Kyro serialization error
I was working off of my thumbdrive with eclipse at school and brought the thumbdrive home.
I suddenly got this error the next time I ran the program:
Exception in thread "main" ...
1
vote
0answers
55 views
Kryo serialization error only on Tabs
I got this issue: my multiplayer game developed with the kryonet libraries works like a charm on every device but rarely it crashes on a galaxy tab. The error it shows is:
E/AndroidRuntime(16861): ...
1
vote
1answer
2k views
Generic Java serialization/deserialization using Kryo
I am trying to serialize and deserialize objects of a custom class (say, SomeClass, having a default no-args constructor) to a byte[] array, using Kryo 2.19 and the default serializer ...
3
votes
2answers
512 views
Jettison or Kryo
I currently use JAXB for a project i'm working on and looking to convert my libraries archived xml to archived json, To act in my project. I figured I would use Jettison as it seems it would be easier ...
0
votes
1answer
97 views
Access a stand alone application from web application
This may be a stupid question. but i don't have any choice to clarifying it. I have a chat server running in a LAN environment system. And for testing purpose i have deployed my chat client applet ...
1
vote
0answers
195 views
Chat server client error
I have developed an applet which has a jar chat client(used kryonet jar file) in on of its panel. In other project i am calling this applet (by converting applet project as jar file and placed it ...
0
votes
1answer
240 views
KryoNet - How do I start client with Boolean xx = new clientprocess(); to get a return value?
I'm creating a little JAVA multiplayer game using kryonet to manage the Server/Client part. I have a little question: in my server program, I start a client with a new called method, "on" a Boolean:
...
0
votes
1answer
123 views
Ideal serialization Java library for storing huge repeative data?
One of my class has to serialize huge numbers of instances and using Xstream, the file size becomes like 30MB when it's done. The size isn't really problem as it will be like 100KB when compressed ...
1
vote
1answer
528 views
How do I run a Kryonet server, only on one protocol?
I'm currently planning to use the Java networking library, Kryonet, for my game. I'm going to use the UDP protocol, as it is faster than TCP. I like the Kryonet API, its very clean code, however it ...
3
votes
5answers
323 views
How can I pass messages to another thread without using a blocking queue?
I have a pretty straight forward server (using kryonet). The clients are only storing the current state of the car (x,y,angle etc) and are sending requests of acceleration and turning.
The server is ...
0
votes
1answer
978 views
Serialization of an object with Kryo (Custom Serializer)
I have an object which contains an array of objects. I would like to
A) store this array of objects in the same file
B) use custom serialization for those objects.
For example, I have a Map ...
0
votes
1answer
325 views
Strategy for registering classes with kryo
I recently discovered the library kryonet, which is super awesome and fits my needs excellently.
However, the one problem that I am having is developing a good strategy for registering all of the ...
0
votes
1answer
357 views
Infinispan+kyro/Google Protocol Buffers to achieve more space and time efficient serialization?
If I understand correctly, Infinispan/JBoss Cache uses Java's own serialization mechanism, which can be slow and takes relatively more storage space. I have been looking for alternatives which can ...
2
votes
1answer
431 views
Increase buffer size in server/client in Kryonet
How do I increase the buffer size in Server/Client constructor in Kryonet?
3
votes
3answers
595 views
Java Kryonet [Class is not registered Exception ]
I found this API called Kryonet. Well, i tried to implement the example provided in the project page. However, it wasn't successful.
Server code:
public class KryoTest {
public KryoTest() throws ...
0
votes
1answer
171 views
Custom network library and serialzation VS default Serialization and RMI
I have this class, I m sending this class via RMI and via kryonet and kryo, I m getting the array of 10 objects with both incase of rmi, as return of remote method call and in case of kryonet echoing ...
1
vote
1answer
342 views
Why am I getting this NullPointerException when using Kryo?
Here's the entire code I'm using.
Kryo kryo = new Kryo();
kryo.register(PlayerPOJO.class);
ByteBuffer buffer = ByteBuffer.allocateDirect(256);
PlayerPOJO pojo = new PlayerPOJO(1.0f, 1.0f);
...
2
votes
1answer
658 views
Serialize multiple objects into a single file using Kryo
As far I know, Kryo serialization / deserialization happens per object. Is it possible to serialize multiple objects into a single file?. One of workaround suggested in another similar SO question was ...
18
votes
5answers
9k views
Kryo serialization library: is it used in production?
Kryo is a very new and interesting Java serialization library, and one of the fastest in the thrift-protobuf benchmark. If you've used Kryo, has it already reached enough maturity to try it out in ...