You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The application caches an index of files and their size for each project to avoid unnecessary file system lookups. This cache by default is retained for 24h or until a new file gets added or an existing one deleted.
The addition/deletion deletes the cached file index, which will be recreated the next time someone asks for the index.
Currently there is no way for administrators to trigger the deletion through the web interface directly, which should be a possibility for certain edge cases: If files were added directly server side on file system level instead of through the application.
The application caches an index of files and their size for each project to avoid unnecessary file system lookups. This cache by default is retained for 24h or until a new file gets added or an existing one deleted.
The addition/deletion deletes the cached file index, which will be recreated the next time someone asks for the index.
Currently there is no way for administrators to trigger the deletion through the web interface directly, which should be a possibility for certain edge cases: If files were added directly server side on file system level instead of through the application.
There already exists a helper function to clear the cache (currently declared as private), see https://github.com/dainst/idai-field/blob/master/server/lib/field_hub/file_store.ex#L323-L325
The text was updated successfully, but these errors were encountered: