{"id":33303746,"url":"https://github.com/f1monkey/elasticsearch-ru-en-translit-plugin","last_synced_at":"2026-03-02T11:33:34.022Z","repository":{"id":324111050,"uuid":"1095765343","full_name":"f1monkey/elasticsearch-ru-en-translit-plugin","owner":"f1monkey","description":null,"archived":false,"fork":false,"pushed_at":"2025-11-13T22:23:51.000Z","size":56,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-11-13T22:24:10.597Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/f1monkey.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-13T13:45:26.000Z","updated_at":"2025-11-13T22:23:54.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/f1monkey/elasticsearch-ru-en-translit-plugin","commit_stats":null,"previous_names":["f1monkey/elasticsearch-ru-en-translit-plugin"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/f1monkey/elasticsearch-ru-en-translit-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f1monkey%2Felasticsearch-ru-en-translit-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f1monkey%2Felasticsearch-ru-en-translit-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f1monkey%2Felasticsearch-ru-en-translit-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f1monkey%2Felasticsearch-ru-en-translit-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/f1monkey","download_url":"https://codeload.github.com/f1monkey/elasticsearch-ru-en-translit-plugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f1monkey%2Felasticsearch-ru-en-translit-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":285084995,"owners_count":27112626,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-18T02:00:05.759Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-11-18T16:00:14.518Z","updated_at":"2025-11-18T16:00:16.828Z","avatar_url":"https://github.com/f1monkey.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Elasticsearch RU-EN Phonetic Translit Plugin\n\n![CI](https://github.com/f1monkey/elasticsearch-ru-en-translit-plugin/workflows/CI%20—%20Test%20\u0026%20Build/badge.svg)\n\n**Phonetic transliteration filter** for Russian and English text.\nEnables **sound-based search** across languages.\n\nIn example, this words will match\n* **\"extension\"** / **\"экстеншн\"** / **\"экстеншен\"**\n* **\"daily\"** / **\"дейли\"** / **\"дэйли\"**\n* **\"chlorophyll\"** / **\"хлорофилл\"**\n\nPerfect for:\n- E-commerce product search\n- Brand name matching\n- Multilingual catalogs\n- Fuzzy phonetic search\n\n---\n\n## Installation\n\n* Run command\n```bash\nsudo /usr/share/elasticsearch/bin/elasticsearch-plugin install https://github.com/f1monkey/elasticsearch-ru-en-translit-plugin/releases/download/v1.0.0/elasticsearch-ru-en-translit-plugin-1.0.0.zip\n```\n* Restart elasticsearch\n\n## Usage\n\n```json\nPUT /my_index\n{\n  \"settings\": {\n    \"analysis\": {\n      \"analyzer\": {\n        \"my_analyzer\": {\n          \"tokenizer\": \"standard\",\n          \"filter\": [\"ru_en_translit\"]\n        }\n      }\n    }\n  },\n  \"mappings\": {\n    \"properties\": {\n      \"name\": { \"type\": \"text\", \"analyzer\": \"my_analyzer\" }\n    }\n  }\n}\n\nPOST /my_index/_analyze\n{\n  \"analyzer\": \"my_analyzer\",\n  \"text\": \"extension экстеншен экстеншон экстеншн\"\n}\n```\n\nResult:\n```json\n{\n  \"tokens\": [\n    {\n      \"token\": \"ekstenshn\",\n      \"start_offset\": 0,\n      \"end_offset\": 9,\n      \"type\": \"\u003cALPHANUM\u003e\",\n      \"position\": 0\n    },\n    {\n      \"token\": \"ekstenshn\",\n      \"start_offset\": 10,\n      \"end_offset\": 19,\n      \"type\": \"\u003cALPHANUM\u003e\",\n      \"position\": 1\n    },\n    {\n      \"token\": \"ekstenshn\",\n      \"start_offset\": 20,\n      \"end_offset\": 29,\n      \"type\": \"\u003cALPHANUM\u003e\",\n      \"position\": 2\n    },\n    {\n      \"token\": \"ekstenshn\",\n      \"start_offset\": 30,\n      \"end_offset\": 38,\n      \"type\": \"\u003cALPHANUM\u003e\",\n      \"position\": 3\n    }\n  ]\n}\n```\n\n## Build from Source\n\nPass elasticSearch version as a build argument\n\n```bash\ngit clone https://github.com/f1moneky/elasticsearch-ru-en-translit-plugin.git\ncd elasticsearch-ru-en-translit-plugin\n./gradlew clean build -PesVersion=8.19.3\n```\n\n## Run tests\n\n```bash\n./gradlew test\n```\n\n## Licence\n\nMIT","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ff1monkey%2Felasticsearch-ru-en-translit-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ff1monkey%2Felasticsearch-ru-en-translit-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ff1monkey%2Felasticsearch-ru-en-translit-plugin/lists"}