jkent / frogfs

Fast Read-Only General-purpose File System (ESP-IDF and ESP8266_RTOS_SDK compatible)
https://frogfs.readthedocs.io
Mozilla Public License 2.0
25 stars 32 forks source link

Directory optimization #45

Closed jkent closed 1 year ago

jkent commented 1 year ago

Discussion for a future version

Directories currently do not know if an object is a direct descendant or not. Should they get their own sort table? This might replace the sort table that follows the hash table.

jkent commented 1 year ago

I've been thinking about this one. The master sort table isn't necessary at all if directories get their own direct descendant sort table. I think I will implement this in next.