aboutsummaryrefslogtreecommitdiff
path: root/src/stable/deflate.cpp (unfollow)
AgeCommit message (Collapse)Author
3 daysOpen is more complete now. It's not fully tested.Mike Buland
It should allow you to open and create arbitrary stream ids, truncate, exclusive mode, etc.
3 daysMyriad headers are the right size now.Mike Buland
That was weird. It seems to be working now.
5 daysIt could use more testing, but...it works.Mike Buland
2024-08-28Most of the new myriad api is in.Mike Buland
Still to go: bootstrapping reading the initial header, saving the header, growing streams as we write?
2024-08-27Making progress.Mike Buland
2024-08-05Perhaps fixed a Myriad race condition.HEAD0.0.1mainMike Buland
If so, this will fix the issue where streams randomly truncate when accessed by multiple threads.
2024-08-05Added rm command to myriadfs tool.Mike Buland
2024-08-05Added loads and loads of debugging output to myriad.Mike Buland
There's an issue somewhere sometimes and streams are being truncated. My guess is a multi-threaded issue.
2024-08-05Added getLocation() support to Bu::File.Mike Buland
It returns "file:<requested path>" which could be made better eventually, but it's nice, I like the format, it'll be good for memory buffers to be able to report in a similar way.
2024-08-05Fixed buffer issue reading headers.Mike Buland
We were only reading 1k of data in before, but if a header was more than 1k then we just would give up. Now we read as much as we can that has loaded into the buffer and if we run out we can try again, but if it's just a very long header we'll deal with it properly still.