fixed an issue where disabling the "RamCache" config would cause a crash
Some checks failed
Run Integration Tests / test (push) Failing after 40s
Some checks failed
Run Integration Tests / test (push) Failing after 40s
This commit is contained in:
parent
41c3b7005a
commit
ab707a91e8
2 changed files with 41 additions and 16 deletions
25
cache.go
25
cache.go
|
@ -123,6 +123,11 @@ func NewGeocodeCache() *GeocodeCache {
|
||||||
|
|
||||||
// Get retrieves the results for a given key from the cache.
|
// Get retrieves the results for a given key from the cache.
|
||||||
func (rc *ResultsCache) Get(key CacheKey) ([]SearchResult, bool) {
|
func (rc *ResultsCache) Get(key CacheKey) ([]SearchResult, bool) {
|
||||||
|
// Skip if RAM caching is disabled
|
||||||
|
if !config.RamCacheEnabled {
|
||||||
|
return nil, false
|
||||||
|
}
|
||||||
|
|
||||||
rc.mu.Lock()
|
rc.mu.Lock()
|
||||||
defer rc.mu.Unlock()
|
defer rc.mu.Unlock()
|
||||||
|
|
||||||
|
@ -143,6 +148,11 @@ func (rc *ResultsCache) Get(key CacheKey) ([]SearchResult, bool) {
|
||||||
|
|
||||||
// Set stores the results for a given key in the cache.
|
// Set stores the results for a given key in the cache.
|
||||||
func (rc *ResultsCache) Set(key CacheKey, results []SearchResult) {
|
func (rc *ResultsCache) Set(key CacheKey, results []SearchResult) {
|
||||||
|
// Skip if RAM caching is disabled
|
||||||
|
if !config.RamCacheEnabled {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
rc.mu.Lock()
|
rc.mu.Lock()
|
||||||
defer rc.mu.Unlock()
|
defer rc.mu.Unlock()
|
||||||
|
|
||||||
|
@ -162,6 +172,11 @@ func (rc *ResultsCache) keyToString(key CacheKey) string {
|
||||||
|
|
||||||
// checkAndCleanCache removes items if memory usage exceeds the limit.
|
// checkAndCleanCache removes items if memory usage exceeds the limit.
|
||||||
func (rc *ResultsCache) checkAndCleanCache() {
|
func (rc *ResultsCache) checkAndCleanCache() {
|
||||||
|
// Skip if RAM caching is disabled
|
||||||
|
if !config.RamCacheEnabled {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
if rc.currentMemoryUsage() > config.RamCache.MaxUsageBytes {
|
if rc.currentMemoryUsage() > config.RamCache.MaxUsageBytes {
|
||||||
rc.cleanOldestItems()
|
rc.cleanOldestItems()
|
||||||
}
|
}
|
||||||
|
@ -179,6 +194,11 @@ func (rc *ResultsCache) currentMemoryUsage() uint64 {
|
||||||
|
|
||||||
// Get retrieves the geocoding result for a given query from the cache.
|
// Get retrieves the geocoding result for a given query from the cache.
|
||||||
func (gc *GeocodeCache) Get(query string) (latitude, longitude string, found bool, exists bool) {
|
func (gc *GeocodeCache) Get(query string) (latitude, longitude string, found bool, exists bool) {
|
||||||
|
// Skip if RAM caching is disabled
|
||||||
|
if !config.RamCacheEnabled {
|
||||||
|
return "", "", false, false
|
||||||
|
}
|
||||||
|
|
||||||
gc.mu.Lock()
|
gc.mu.Lock()
|
||||||
defer gc.mu.Unlock()
|
defer gc.mu.Unlock()
|
||||||
|
|
||||||
|
@ -198,6 +218,11 @@ func (gc *GeocodeCache) Get(query string) (latitude, longitude string, found boo
|
||||||
}
|
}
|
||||||
|
|
||||||
func (gc *GeocodeCache) Set(query, latitude, longitude string, found bool) {
|
func (gc *GeocodeCache) Set(query, latitude, longitude string, found bool) {
|
||||||
|
// Skip if RAM caching is disabled
|
||||||
|
if !config.RamCacheEnabled {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
gc.mu.Lock()
|
gc.mu.Lock()
|
||||||
defer gc.mu.Unlock()
|
defer gc.mu.Unlock()
|
||||||
|
|
||||||
|
|
32
config.go
32
config.go
|
@ -30,25 +30,25 @@ type MetaSearchConfig struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type Config struct {
|
type Config struct {
|
||||||
Port int // Added
|
Port int
|
||||||
AuthCode string // Added
|
AuthCode string
|
||||||
PeerID string // Added
|
PeerID string
|
||||||
Peers []string
|
Peers []string
|
||||||
Domain string // Added
|
Domain string
|
||||||
NodesEnabled bool // Added
|
NodesEnabled bool
|
||||||
MetaSearchEnabled bool // Added
|
MetaSearchEnabled bool
|
||||||
IndexerEnabled bool // Added
|
IndexerEnabled bool
|
||||||
WebsiteEnabled bool // Added
|
WebsiteEnabled bool
|
||||||
RamCacheEnabled bool
|
RamCacheEnabled bool
|
||||||
DriveCacheEnabled bool // Added
|
DriveCacheEnabled bool
|
||||||
MetaProxyEnabled bool // Added
|
MetaProxyEnabled bool
|
||||||
MetaProxyStrict bool // Added
|
MetaProxyStrict bool
|
||||||
MetaProxies []string // Added
|
MetaProxies []string
|
||||||
CrawlerProxyEnabled bool // Added
|
CrawlerProxyEnabled bool
|
||||||
CrawlerProxyStrict bool // Added
|
CrawlerProxyStrict bool
|
||||||
CrawlerProxies []string // Added
|
CrawlerProxies []string
|
||||||
// Maybye add Proxy support for Image Extraction?
|
// Maybye add Proxy support for Image Extraction?
|
||||||
LogLevel int // Added
|
LogLevel int
|
||||||
ConcurrentStandardCrawlers int
|
ConcurrentStandardCrawlers int
|
||||||
ConcurrentChromeCrawlers int
|
ConcurrentChromeCrawlers int
|
||||||
CrawlingInterval time.Duration // Refres crawled results in...
|
CrawlingInterval time.Duration // Refres crawled results in...
|
||||||
|
|
Loading…
Add table
Reference in a new issue