ibireme/YYCache

关于YYDiskCache的ageLimit问题

mushao1990 opened this issue · 0 comments

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