(eid int64, libraryID int64)
| 634 | } |
| 635 | |
| 636 | func invalidateLibraryFileCountCache(eid int64, libraryID int64) { |
| 637 | if libraryID > 0 && fileCountCacheInvalidator != nil { |
| 638 | fileCountCacheInvalidator(eid, libraryID) |
| 639 | } |
| 640 | } |
| 641 | |
| 642 | // CountNotDeletedFilesByLibraryIDs 按知识库批量统计未删除文件数(仅统计文档,不含目录) |
| 643 | func CountNotDeletedFilesByLibraryIDs(eid int64, libraryIDs []int64) (map[int64]int64, error) { |
no outgoing calls
no test coverage detected