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

Refactor search sync to try to reduce memory usage and hash ids #662

Merged
merged 5 commits into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
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
11 changes: 11 additions & 0 deletions src/lib/search/searchHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,3 +137,14 @@ export function mapIndexToMessage(index: SearchableIndex) {
return "";
}
}

/**
* Meilisearch has constraints on the id field:
* it can only contain alphanumeric characters (a-z, A-Z, 0-9), hyphens (-), and underscores (_).
* So we need to convert the prisma id to a meilisearch id.
* As of now, the Positions table has a prisma id that is not compatible with meilisearch.
* It contains dots (.) and possibly swedish characters (åäö).
*/
export function prismaIdToMeiliId(id: string) {
return btoa(id).replace(/\+/g, "-").replace(/\//g, "_").replace(/=/g, "");
}
danieladugyan marked this conversation as resolved.
Show resolved Hide resolved
Loading
Loading