6
I Use This!
Moderate Activity
Analyzed about 6 hours ago. based on code collected 1 day ago.

Project Summary

== Overview ==

Kryo is a fast and efficient object graph serialization framework for Java. The goals of the project are speed, efficiency, and an easy to use API. The project is useful any time objects need to be persisted, whether to a file, database, or over the network.

Kryo is competitive with other serialization projects. See BenchmarksAndComparisons for charts and more.

== Quickstart ==

Jumping way ahead to show how the library is used:

{{{
Kryo kryo = new Kryo();
kryo.register(SomeClass.class);
// ...
SomeClass someObject = new SomeClass(...);
kryo.writeObject(buffer, someObject);
// ...
SomeClass someObject = kryo.readObject(buffer, SomeClass.class);
}}}

Tags

No tags have been added

BSD 3-clause "New" or "Revised" License
Permitted

Commercial Use

Modify

Distribute

Place Warranty

Forbidden

Hold Liable

Use Trademarks

Required

Include Copyright

Include License

These details are provided for information only. No information here is legal advice and should not be used as such.

Project Security

Vulnerabilities per Version ( last 10 releases )

There are no reported vulnerabilities

Project Vulnerability Report

Security Confidence Index

Poor security track-record
Favorable security track-record

Vulnerability Exposure Index

Many reported vulnerabilities
Few reported vulnerabilities

Did You Know...

  • ...
    in 2016, 47% of companies did not have formal process in place to track OS code
  • ...
    check out hot projects on the Open Hub
  • ...
    nearly 1 in 3 companies have no process for identifying, tracking, or remediating known open source vulnerabilities
  • ...
    compare projects before you chose one to use
About Project Security

Languages

HTML
42%
Java
42%
CSS
11%
5 Other
5%

30 Day Summary

Nov 9 2024 — Dec 9 2024

12 Month Summary

Dec 9 2023 — Dec 9 2024
  • 110 Commits
    Up + 2 (1%) from previous 12 months
  • 4 Contributors
    Down -1 (20%) from previous 12 months