*/
void touchFile(final String fileName) {
final FileMetadata file = fileOps.getFileMetadata(fileName);
if (file != null) {
final FileCacheKey key = new FileCacheKey(indexName, fileName);
file.touch();
metadataCache.put(key, file);
}
}
void deleteFile(final String name) {