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:
@@ -187,9 +187,6 @@ type HealthResponse struct {
|
||||
ClientVersion string `json:"client_version,omitempty"` // Client version from request
|
||||
Compatible bool `json:"compatible"` // Whether versions are compatible
|
||||
Uptime float64 `json:"uptime_seconds"`
|
||||
CacheSize int `json:"cache_size"`
|
||||
CacheHits int64 `json:"cache_hits"`
|
||||
CacheMisses int64 `json:"cache_misses"`
|
||||
DBResponseTime float64 `json:"db_response_ms"`
|
||||
ActiveConns int32 `json:"active_connections"`
|
||||
MaxConns int `json:"max_connections"`
|
||||
|
||||
Reference in New Issue
Block a user