Files
ToastyFS/TODO.txt
T
Claude 1a297989d4 Rename project from TinyDFS to MouseFS
- Renamed TinyDFS.h to MouseFS.h
- Updated all type names: TinyDFS -> MouseFS, TinyDFS_Entity -> MouseFS_Entity, TinyDFS_Result -> MouseFS_Result
- Updated all enum values: TINYDFS_RESULT_* -> MOUSEFS_RESULT_*
- Updated all function names: tinydfs_* -> mousefs_*
- Updated all variable names: tdfs -> mfs
- Updated references in all source files, headers, examples, and documentation
- Updated Makefile build targets: tinydfs_* -> mousefs_*
2025-11-10 18:00:05 +00:00

12 lines
987 B
Plaintext

- Chunks should not be separated between the main and orphaned folders. The concept of "orphans" or "to be removed" should only be held in-memory. If a chunk server crashes, upon restarting and reconnecting to the master any chunk will be re-marked for removal when speaking to the master.
- Implement proper operation handles that allow users to wait for specific events
- Clean up the read operation for clients
- Check that the corner case where read and writes go over the length of the file work correctly
- When a client received metadata and starts reading or writing to a chunk server, it should try connecting to all addresses of a chunk servers, not just the first one.
- Return the number of bytes read or written in the MouseFS_Result struct
- Make parallel uploads/downloads configurable
- Recalculate next write locations whenever a write occurs, not at each read
- avoid replay attacks
- find a way to remove over-replicated chunks
- formalize the chunk management policy