Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nrogers/ Quick fix to the docs removing TOKENS_ONLY as an index strategy #204

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/InMemoryTokenSelection.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ stateSelection {
}
```

And choose a single indexing strategy, `EXTERNAL_ID` , `PUBLIC_KEY` or `TOKEN_ONLY`. Public key strategy makes a token bucket for each public key,
And choose a single indexing strategy, `EXTERNAL_ID` or `PUBLIC_KEY`. Public key strategy makes a token bucket for each public key,
so if you use accounts, probably it is better to use external id grouping that groups states
from many public keys connected with given uuid. `TOKEN_ONLY` selection strategy indexes states only using token type and identifier.
from many public keys connected with given uuid.

For example, to configure token selection in your `deployNodes`:

Expand Down