I would like to speedup queries like:
find root_dir -atime -5
- find files which were accessed less then five days ago.
I think about storing filesystem hieratchy and files metadata in a db. Do you know any solution that can help ? Maybe there exists a fuse filesystem that can do this ?
There is
updatedb
andlocate
(same package), but it needs to be run manually for updates and doesn't appear to be able to search by filestamps. If you'll be writing your own solution, it may still be a good starting point though.