Raku / whateverable

🤖 Different IRC bots that operate on a bunch of prebuilt Rakudo versions
https://gist.github.com/Whateverable
GNU Affero General Public License v3.0
18 stars 14 forks source link

Notable losing its db when out of space #304

Closed AlexDaniel closed 11 months ago

AlexDaniel commented 6 years ago

Notable stores notes in a simple json file, which normally works alright except that it just lost the whole file attempting to write it when there was no free space on the server.

Either it should write to a temp file first (and then move that file), or it should use a proper DBMS.

JJ commented 6 years ago

Maybe go halfway: use Sqlite.

AlexDaniel commented 6 years ago

That's something I'd call a DBMS, yes.