Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-08-21 | LibSQL: Introduce Serializer as a mediator between Heap and client code | Jan de Visser | |
Classes reading and writing to the data heap would communicate directly with the Heap object, and transfer ByteBuffers back and forth with it. This makes things like caching and locking hard. Therefore all data persistence activity will be funneled through a Serializer object which in turn submits it to the Heap. Introducing this unfortunately resulted in a huge amount of churn, in which a number of smaller refactorings got caught up as well. | |||
2021-06-19 | LibSQL: Database layer | Jan de Visser | |
This patch implements the beginnings of a database API allowing for the creation of tables, inserting rows in those tables, and retrieving those rows. |