mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 20:51:43 +00:00
Column helper now returns 0 based indexes. FilterTar became a required function on diskcache. Test Plan: go test -run '^$' -bench . ./cmd/searcher/internal/search Fixes https://linear.app/sourcegraph/issue/SPLF-183/benchmarks-in-searcher-broken |
||
|---|---|---|
| .. | ||
| internal/search | ||
| shared | ||
| BUILD.bazel | ||
| CODENOTIFY | ||
| image_test.yaml | ||
| main.go | ||
| README.md | ||
searcher
Provides on-demand unindexed search for repositories. It scans through a git archive fetched from gitserver to find results, similar in nature to git grep.
This service should be scaled up the more on-demand searches that need to be done at once. For a search the frontend will scatter the search for each repo@commit across the replicas. The frontend will then gather the results. Like gitserver this is an IO and compute bound service. However, its state is just a disk cache which can be lost at anytime without being detrimental.