Remove useless cache tags

This commit is contained in:
LittleSheep 2025-03-29 17:08:17 +08:00
parent a12ba060f5
commit aa52aa73fe
3 changed files with 0 additions and 3 deletions

View File

@ -92,7 +92,6 @@ func CacheAttachment(item models.Attachment) {
KgAttachmentCache(item.Rid),
item,
60*time.Minute,
cachekit.FKey("attachment", item.Rid),
)
}

View File

@ -91,7 +91,6 @@ func CacheAttachmentFragment(item models.AttachmentFragment) {
KgAttachmentFragmentCache(item.Rid),
item,
60*time.Minute,
cachekit.FKey("attachment", item.Rid),
)
}

View File

@ -156,6 +156,5 @@ func CacheOpenAttachment(item *openAttachmentResult) {
KgAttachmentCache(item.Attachment.Rid),
*item,
60*time.Minute,
cachekit.FKey("attachment", item.Attachment.Rid),
)
}