Add username search endpoint with trigram similarity#171
Draft
Add username search endpoint with trigram similarity#171
Conversation
Co-authored-by: Amund211 <14028449+Amund211@users.noreply.github.com>
Co-authored-by: Amund211 <14028449+Amund211@users.noreply.github.com>
Co-authored-by: Amund211 <14028449+Amund211@users.noreply.github.com>
Co-authored-by: Amund211 <14028449+Amund211@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add searchusername method to player repository
Add username search endpoint with trigram similarity
Dec 15, 2025
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements fuzzy username search using PostgreSQL trigram similarity against the full username history in
username_queriestable. Returns unique UUIDs ranked by match quality and recency.Changes
Repository Layer
SearchUsername(ctx, search, top)method to Postgres account repositorysimilarity(username, $1) > 0)player_uuidto return unique UUIDs with best match scoreMAX(similarity(...)) DESC, MAX(last_queried_at) DESCtopparameter (1-100)Application Layer
BuildSearchUsernamewrapper with 5s timeoutAPI Layer
GET /v1/username/search?search={term}&top={limit}{"success": true, "uuids": ["uuid1", "uuid2", ...]}top=10, max 100Database
pg_trgmextensionExample Usage
Matches "Technoblade", "TechnoFan", etc. with fuzzy matching, returning most similar results first, then most recently seen.
Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.