struct to implement LocalCache interface from vector-indexer acts as wrapper for dgraph *LocalCache
| 81 | // struct to implement LocalCache interface from vector-indexer |
| 82 | // acts as wrapper for dgraph *LocalCache |
| 83 | type viLocalCache struct { |
| 84 | delegate *LocalCache |
| 85 | } |
| 86 | |
| 87 | func (vc *viLocalCache) Find(prefix []byte, filter func([]byte) bool) (uint64, error) { |
| 88 | return vc.delegate.Find(prefix, filter) |
nothing calls this directly
no outgoing calls
no test coverage detected