6
I Use This!
Moderate Activity

Commits : Listings

Analyzed about 15 hours ago. based on code collected about 16 hours ago.
Nov 24, 2024 — Nov 24, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Refactored ClassResolver, move most logic back into Kryo. Simplified DefaultClassResolver. Added registration tests. Made registering with an explicit ID more sane. More... over 13 years ago
Variable rename. More... over 13 years ago
Memoized class ID -> registration look up. v2.15 More... over 13 years ago
Added Kryo#reference to KryoSerializableSerializer. More... over 13 years ago
Refactored how references work, added ReferenceResolver for customizing references. Cleaned up some code and javadocs, moved some classes the the "util" package. More... over 13 years ago
Push version to 2.15-SNAPSHOT. More... over 13 years ago
Update pom.xml to enable SNAPSHOT deployments to sonatype (via mvn clean deploy). More... over 13 years ago
Exclude svn files from created jars. More... over 13 years ago
Add config for attached shaded jar (classifier "shaded") to pom.xml More... over 13 years ago
Updated Eclipse project file with ReflectASM 1.04. More... over 13 years ago
Updated ReflectASM to 1.04. More... over 13 years ago
Fixed generic types. Only the first level of generics are supported (eg only ArrayList<ArrayList> for a field ArrayList<ArrayList<Integer>>). More... over 13 years ago
v2.14 More... over 13 years ago
Renamed readObjects to seenObjects to keep things sane. More... over 13 years ago
Fixed issue 69, added setReferenceMap(boolean) to choose between a map or list for object references. More... over 13 years ago
Added String length tests. More... over 13 years ago
Removed 21 bit limitation on string length. Broke string reading into smaller methods. Refactored variable length int and long encodings. Won't touch them again, promise! Added canReadLong. Removed variable length short (not terribly useful). Kryo now throws ConcurrentModificationException from read and write methods if invoked from a different thread, but only when DEBUG logging is enabled. More... over 13 years ago
Made DefaultClassResolver field protected for better code reuse. More... over 13 years ago
Fixed map size not updating when entry is put in stash. More... over 13 years ago
Javadocs. More... over 13 years ago
Fixed memory leak when references=false. Made class resolution pluggable. More... over 13 years ago
Added create methods for CollectionSerializer and MapSerializer. More... over 13 years ago
Minor fixes. More... over 13 years ago
Removed Serializer#create()/read() and replaced with just read(). Added Kryo#reference that must be called before Kryo can be used to read child objects. This simplifies the API and makes it more clear on how to deserialize immutable objects. Removed Serializer#createCopy()/copy() and replaced with just copy(). Added cache to avoid Class.forName. More... over 13 years ago
Identity comparison for IdentityObjectIntMap! More... over 13 years ago
Removed debug code. More... over 13 years ago
Issue 69, writing references is slow, went back to using a map, tweaked cuckoo map settings. More... over 13 years ago
Fixed issue 68, added support for serializers to know generic type information. More... over 13 years ago
Added max depth. More... over 13 years ago
Fixed Input returning signed bytes from InputStream#read(). More... over 13 years ago