EncodeInvertedIndexKeys takes in a key prefix and returns a slice of inverted index keys, one per unique path through the receiver.
(b []byte, json JSON)
| 1061 | // EncodeInvertedIndexKeys takes in a key prefix and returns a slice of inverted index keys, |
| 1062 | // one per unique path through the receiver. |
| 1063 | func EncodeInvertedIndexKeys(b []byte, json JSON) ([][]byte, error) { |
| 1064 | return json.encodeInvertedIndexKeys(encoding.EncodeJSONAscending(b)) |
| 1065 | } |
| 1066 | |
| 1067 | // EncodeContainingInvertedIndexSpans takes in a key prefix and returns the |
| 1068 | // spans that must be scanned in the inverted index to evaluate a contains (@>) |
nothing calls this directly
no test coverage detected
searching dependent graphs…