(w io.Writer)
| 889 | } |
| 890 | |
| 891 | func (srv *Server) WriteDagqlCacheDebugSnapshot(w io.Writer) error { |
| 892 | if srv.engineCache == nil { |
| 893 | return fmt.Errorf("dagql cache not available") |
| 894 | } |
| 895 | return srv.engineCache.WriteDebugCacheSnapshot(w) |
| 896 | } |
| 897 | |
| 898 | // ConnectedClients returns the number of currently connected clients |
| 899 | func (srv *Server) ConnectedClients() int { |
no test coverage detected