Remove daemon storage cache (bd-33, bd-34, bd-35)

- Deleted server_cache_storage.go (~300 lines)
- Removed cache fields from Server struct
- Simplified database routing to use s.storage directly
- Removed cache metrics from health and metrics endpoints
- Deleted server_eviction_test.go (cache eviction tests)
- Cleaned up limits_test.go (removed cache assertions)
- All tests passing
This commit is contained in:
Steve Yegge
2025-10-28 10:33:19 -07:00
parent 77095d9ac3
commit 322ab63b10
10 changed files with 6 additions and 964 deletions

View File

@@ -4,11 +4,9 @@ import (
"bufio"
"context"
"encoding/json"
"fmt"
"net"
"os"
"path/filepath"
"runtime"
"sync"
"sync/atomic"
"testing"
@@ -200,59 +198,6 @@ func TestRequestTimeout(t *testing.T) {
}
}
func TestMemoryPressureDetection(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("memory pressure detection thresholds are not reliable on Windows")
}
tmpDir := t.TempDir()
dbPath := filepath.Join(tmpDir, ".beads", "test.db")
if err := os.MkdirAll(filepath.Dir(dbPath), 0750); err != nil {
t.Fatal(err)
}
store, err := sqlite.New(dbPath)
if err != nil {
t.Fatal(err)
}
defer store.Close()
socketPath := filepath.Join(tmpDir, "test.sock")
srv := NewServer(socketPath, store, tmpDir, dbPath)
// Add some entries to cache
srv.cacheMu.Lock()
for i := 0; i < 10; i++ {
path := fmt.Sprintf("/test/path/%d", i)
srv.storageCache[path] = &StorageCacheEntry{
store: store,
lastAccess: time.Now().Add(-time.Duration(i) * time.Minute),
}
}
initialSize := len(srv.storageCache)
srv.cacheMu.Unlock()
// Trigger aggressive eviction directly (should evict 50% of entries)
srv.aggressiveEviction()
// Check that some entries were evicted
srv.cacheMu.RLock()
finalSize := len(srv.storageCache)
srv.cacheMu.RUnlock()
if finalSize >= initialSize {
t.Errorf("expected cache eviction, but size went from %d to %d", initialSize, finalSize)
}
expectedSize := initialSize / 2
if finalSize != expectedSize {
t.Errorf("expected exactly %d entries after evicting 50%%, got %d", expectedSize, finalSize)
}
t.Logf("Cache evicted: %d -> %d entries", initialSize, finalSize)
}
func TestHealthResponseIncludesLimits(t *testing.T) {
tmpDir, err := os.MkdirTemp("", "bd-limits-test-*")
if err != nil {