tmpfs : 使用内存作为Linux磁盘文件,用于缓存读写。 操作
vim /etc/fstab
tmpfs /tmpfs_cache tmpfs size=2G,noatime,nodiratime 0 0
挂载
mkdir /tmpfs_cache
mount -a
效果
df -h | grep /tmpfs_cache
tmpfs 2.0G 216K 2.0G 1% /tmp
现在就可以将nginx 缓存目录 指向/tmpfs_cache了。