You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
个人看源码觉得这个属性值的使用代码有误。
表里last_access_time字段存的是操作数据时候的时间戳。但是removeItemsEarlierThanTime方法里,传的参数是当前时间戳与agelimit的差值。
因此,查询sql语句里 select filename from manifest where last_access_time < ?1 and filename is not null; 查到的过期文件就有问题。
The text was updated successfully, but these errors were encountered:
个人看源码觉得这个属性值的使用代码有误。
表里last_access_time字段存的是操作数据时候的时间戳。但是removeItemsEarlierThanTime方法里,传的参数是当前时间戳与agelimit的差值。
因此,查询sql语句里 select filename from manifest where last_access_time < ?1 and filename is not null; 查到的过期文件就有问题。
The text was updated successfully, but these errors were encountered: