No description
Find a file
2023-05-25 22:59:06 +02:00
demo made it a little smarter and fixed some bugs along the way. Also a demo rest api, which is WIP 2023-05-25 15:56:32 +02:00
jackson made it a little smarter and fixed some bugs along the way. Also a demo rest api, which is WIP 2023-05-25 15:56:32 +02:00
lib Update ContiguousList.java 2023-05-25 22:59:06 +02:00
.gitignore initial commit after two days work 2023-05-24 22:12:14 +02:00
LICENSE Initial commit 2023-05-24 22:10:19 +02:00
pom.xml made it a little smarter and fixed some bugs along the way. Also a demo rest api, which is WIP 2023-05-25 15:56:32 +02:00
README.md better 2023-05-24 22:18:57 +02:00

Design decisions

  • built for speed and efficiency (within java)

  • uses storage format borrowed from SQLite with 1 exception: float is stored as f32 (SQLite only uses f64)

  • needs jdk 9 (VarHandles)

  • minimal reflection (once per creation of the list)

  • The only class (for now): ContiguousList

  • Still in a very early stage

    • the code is working
    • but it remains to be seen if this is a good idea