-
-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathcache.go
71 lines (62 loc) · 2.12 KB
/
cache.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package engine
import (
"net/http"
"github.com/xyproto/datablock"
lua "github.com/xyproto/gopher-lua"
"github.com/xyproto/ollamaclient/v2"
)
// DataToClient is a helper function for sending file data (that might be cached) to a HTTP client
func (ac *Config) DataToClient(w http.ResponseWriter, req *http.Request, filename string, data []byte) {
datablock.NewDataBlock(data, true).ToClient(w, req, filename, ac.ClientCanGzip(req), gzipThreshold)
}
// LoadCacheFunctions loads functions related to caching into the given Lua state
func (ac *Config) LoadCacheFunctions(L *lua.LState) {
const disabledMessage = "Caching is disabled"
const clearedMessage = "Cache cleared"
luaCacheStatsFunc := L.NewFunction(func(L *lua.LState) int {
if ac.cache == nil {
L.Push(lua.LString(disabledMessage))
return 1 // number of results
}
info := ac.cache.Stats()
// Return the string, but drop the final newline
L.Push(lua.LString(info[:len(info)-1]))
return 1 // number of results
})
// Return information about the cache use
L.SetGlobal("CacheInfo", luaCacheStatsFunc)
L.SetGlobal("CacheStats", luaCacheStatsFunc) // undocumented alias
// Clear the cache
L.SetGlobal("ClearCache", L.NewFunction(func(L *lua.LState) int {
ollamaclient.ClearCache()
if ac.cache == nil {
L.Push(lua.LString(disabledMessage))
return 1 // number of results
}
ac.cache.Clear()
L.Push(lua.LString(clearedMessage))
return 1 // number of results
}))
// Try to load a file into the file cache, if it isn't already there
L.SetGlobal("preload", L.NewFunction(func(L *lua.LState) int {
filename := L.ToString(1)
if ac.cache == nil {
L.Push(lua.LBool(false))
return 1 // number of results
}
// Don't read from disk if already in cache, hence "true"
if _, err := ac.cache.Read(filename, true); err != nil {
L.Push(lua.LBool(false))
return 1 // number of results
}
L.Push(lua.LBool(true)) // success
return 1 // number of results
}))
}
// ClearCache tries to clear the Ollama client cache and the disk cache
func (ac *Config) ClearCache() {
ollamaclient.ClearCache()
if ac.cache != nil {
ac.cache.Clear()
}
}