mirror of
https://codeberg.org/Codeberg/pages-server.git
synced 2024-11-05 14:07:01 +00:00
explain why we cache symlinc and not content
This commit is contained in:
parent
c6326c88af
commit
eeaff6de2c
1 changed files with 1 additions and 0 deletions
|
@ -137,6 +137,7 @@ func (client *Client) ServeRawContent(targetOwner, targetRepo, ref, resource str
|
||||||
}
|
}
|
||||||
linkDest := strings.TrimSpace(string(linkDestBytes))
|
linkDest := strings.TrimSpace(string(linkDestBytes))
|
||||||
|
|
||||||
|
// we store symlink not content to reduce duplicates in cache
|
||||||
if err := client.responseCache.Set(cacheKey, FileResponse{
|
if err := client.responseCache.Set(cacheKey, FileResponse{
|
||||||
Exists: true,
|
Exists: true,
|
||||||
IsSymlink: true,
|
IsSymlink: true,
|
||||||
|
|
Loading…
Reference in a new issue