private static void makeCache(final String fileName, final Map<MutableString, Long> map)
throws IOException {
File cacheFile = new File(fileName);
FileOutputStream fos = new FileOutputStream(cacheFile, false);
FastBufferedOutputStream bos = new FastBufferedOutputStream(fos);
ObjectUtils.toStream(map, bos);
bos.flush();
bos.close();
}