Hiruna Jayamanne

My Blog

Link to repository.

Preface

As I was making Nyanko, I needed a way of storing the user's data more efficiently than a JSON file as I would have to serialise a large JSON file every time I made a change to the data. In this situation, most developers reach out to sqlite because you can store a whole database in a single file and read and write to it very efficiently. I also intend on porting Nyanko to Android and sqlite is a very common data storage format for Android apps.

There's jus…

Announcement Rust