FileExplorer icon indicating copy to clipboard operation
FileExplorer copied to clipboard

Freeze on loading

Open PotatoSUS opened this issue 2 years ago • 2 comments

infinite loading 🔥 image

PotatoSUS avatar Jul 05 '23 20:07 PotatoSUS

My drives indexing time. image

ismi-abbas avatar Jul 07 '23 01:07 ismi-abbas

I think it should not wait for the index to build before you can access files. Search could block until the index is build or depending how the index is build (first load all files vs add each file to index as soon as it is found) it could show results of what is currently in the index and update the view with new matches as the index is being build up. refs #17

grayfallstown avatar Jul 07 '23 12:07 grayfallstown

I think the reason you're having an infinite load is due to this issue https://github.com/conaticus/FileExplorer/issues/41 if you look at filesystem/cache.rs:133 you can see that the cache has a 60 second interval before a new recaching is started, this means the frontend never gets the volumes it needs to know about and you're stuck on an infinite loop (filesystem/volume.rs:124)

RaphGL avatar Jul 08 '23 20:07 RaphGL