}
@Override
public IndexOutput createOutput(String name) throws IOException {
AppEngineFileWrapper fileWrapper = fileWrapperRepository.get(name);
if (fileWrapper == null) {
fileWrapper = new AppEngineFileWrapper(name);
fileWrapperRepository.put(fileWrapper);
}
return new BlobStoreIndexOutput(fileWrapper);