如何在Linux系统上以编程方式清除C ++中的文件系统内存缓存?

时间:2011-07-25 15:38:01

标签: c++ c linux caching

我正在用C ++编写一个基准测试工具,我希望在实验之间清除文件系统内存缓存。我知道以下控制台命令:

sync
echo 3 > /proc/sys/vm/drop_caches

我的问题是如何在C ++中直接以编程方式执行此操作?

感谢任何帮助!

3 个答案:

答案 0 :(得分:12)

这样的事情可以解决问题:

int fd;
char* data = "3";

sync();
fd = open("/proc/sys/vm/drop_caches", O_WRONLY);
write(fd, data, sizeof(char));
close(fd);

答案 1 :(得分:12)

请写信:

sync();

std::ofstream ofs("/proc/sys/vm/drop_caches");
ofs << "3" << std::endl;

答案 2 :(得分:0)

稍微好一点的方法是使用syncfs()仅同步包含描述符的文件系统。甚至更好,只需使用fsync()

int fd = open(...);   // Open your files
write(...);           // Your write calls
fsync(fd);            // Sync your file
close(fd);            // Close them
如果描述符无效,

fsync()可能会失败。如果errno返回-1,请查找private void uploadDocs(List<Prescription> prescriptions, BufferedImage stampImage) { List<Object> pDDocumentList = new ArryaList<>(); List<Object> imageList = new ArryaList<>(); Map<String, List<Object>> map = new HashMap<>(); for (Prescription prescription : prescriptions) { PDDocument pdfDoc = MyUtility.insertImageTopdf(doc, stampImage, noOfPrescription); pDDocumentList.add(pdfDoc); BufferedImage updatedImage = Utility.createImage(pdfDoc, 0); imageList.add(updatedImage); } map.put("Image", imageList); map.put("Pdf", pDDocumentList); }