-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: migrate to new ISA implementation (#588)
This switches to a rewrite of indexer-selection that has been stripped down to only concerning itself with picking candidates out of a valid set. The new implementation removes a lot of long-standing inefficiencies, and will be easier to iterate on changes to the ISA. See https://github.com/edgeandnode/candidate-selection A bunch of integration testing and production performance comparisons will happen before this is released.
- Loading branch information
Showing
30 changed files
with
410 additions
and
2,330 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,12 +9,12 @@ alloy-sol-types = "0.6.2" | |
anyhow.workspace = true | ||
axum.workspace = true | ||
ethers = "2.0.13" | ||
candidate-selection = { git = "ssh://[email protected]/edgeandnode/candidate-selection.git", rev = "c0b5efa" } | ||
eventuals = "0.6.7" | ||
gateway-common = { path = "../gateway-common" } | ||
graphql-http.workspace = true | ||
headers = "0.3.9" | ||
hex.workspace = true | ||
indexer-selection = { path = "../indexer-selection" } | ||
itertools = "0.12.1" | ||
lazy_static = "1.4.0" | ||
maxminddb = "0.24" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ graphql.workspace = true | |
graphql-http.workspace = true | ||
headers = "0.3.9" | ||
hickory-resolver = "0.24.0" | ||
indexer-selection = { path = "../indexer-selection" } | ||
indexer-selection = { git = "ssh://[email protected]/edgeandnode/candidate-selection.git", rev = "0f711bc" } | ||
indoc = "2.0.4" | ||
itertools = "0.12.1" | ||
num-traits = "0.2.18" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.