Open mushao1990 opened 6 years ago
个人看源码觉得这个属性值的使用代码有误。 表里last_access_time字段存的是操作数据时候的时间戳。但是removeItemsEarlierThanTime方法里,传的参数是当前时间戳与agelimit的差值。 因此,查询sql语句里 select filename from manifest where last_access_time < ?1 and filename is not null; 查到的过期文件就有问题。
个人看源码觉得这个属性值的使用代码有误。 表里last_access_time字段存的是操作数据时候的时间戳。但是removeItemsEarlierThanTime方法里,传的参数是当前时间戳与agelimit的差值。 因此,查询sql语句里 select filename from manifest where last_access_time < ?1 and filename is not null; 查到的过期文件就有问题。