{"id":49273886,"url":"https://github.com/bethibande/serialization","last_synced_at":"2026-04-25T15:05:21.460Z","repository":{"id":291241136,"uuid":"975962876","full_name":"Bethibande/serialization","owner":"Bethibande","description":"Low-latency Java serialization","archived":false,"fork":false,"pushed_at":"2025-07-04T13:32:37.000Z","size":165,"stargazers_count":1,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-04T15:10:44.872Z","etag":null,"topics":["java","serialization"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Bethibande.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-01T08:09:27.000Z","updated_at":"2025-07-04T13:32:40.000Z","dependencies_parsed_at":"2025-05-10T15:22:33.943Z","dependency_job_id":null,"html_url":"https://github.com/Bethibande/serialization","commit_stats":null,"previous_names":["bethibande/serialization"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Bethibande/serialization","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bethibande%2Fserialization","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bethibande%2Fserialization/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bethibande%2Fserialization/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bethibande%2Fserialization/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Bethibande","download_url":"https://codeload.github.com/Bethibande/serialization/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bethibande%2Fserialization/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32266021,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-25T09:15:33.318Z","status":"ssl_error","status_checked_at":"2026-04-25T09:15:31.997Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","serialization"],"created_at":"2026-04-25T15:04:49.365Z","updated_at":"2026-04-25T15:05:21.451Z","avatar_url":"https://github.com/Bethibande.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Java Serialization\n\nThis project aims to create a low-latency serialization framework for Java.\n\n\u003e [!CAUTION]\n\u003e This framework is still very much work-in-progress. Non-experimental usage is not yet recommended.\n\n### Example\n\n```java\nimport java.nio.ByteBuffer;\n\n@Getter\n@Setter\n@SerializableType\npublic class MyClass {\n\n    private int someInteger;\n    private boolean someBoolean;\n    private String someString;\n\n}\n\npublic static void main(String[] args) {\n    final ByteBuffer buffer = ByteBuffer.allocateDirect(64);\n    final Writer writer = new ByteBufferWriter(buffer);\n    final Reader reader = new ByteBufferReader(buffer);\n\n    final MyClass myObject = new MyClass();\n    myObject.setSomeInteger(123);\n    myObject.setSomeBoolean(true);\n    myObject.setSomestring(\"abc\");\n\n    final MyClassSerializer serializer = new MyClassSerializer();\n    serializer.bind(writer).write(myObject);\n\n    buffer.flip();\n\n    final MyClassDeserializer deserializer = new MyClassDeserializer();\n    final MyClass output = deserializer.bind(reader).read(new MyClass());\n}\n```\n\nFor more examples see [here](/example/src/main/java/de/bethibande/serial/example/Main.java)\n\n### Type support\n\n- ✅ Fully supported\n- ❌ Not yet supported\n\n| Type                     | Support |\n|--------------------------|---------|\n| Any primitive type       | ✅       |\n| Any boxed primitive type | ✅       |\n| String / CharSequence    | ✅       |\n| Any enum type            | ✅       |\n| Arrays                   | ✅       |\n| Collections              | ✅       |\n| Other serializable types | ✅       |\n| Maps                     | ❌       |\n| Java time types          | ❌       |\n\nPlease note that not null annotations are supported. Marking nullable fields as not nullable will omit null-checks,\ndoing so can cause null pointer exceptions at runtime in the event that such a field does contain a null value.\nHowever, serializing/deserializing not nullable fields is faster.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbethibande%2Fserialization","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbethibande%2Fserialization","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbethibande%2Fserialization/lists"}