{"id":17158902,"url":"https://github.com/fukuchi/omeka-s-module-mroonga-search","last_synced_at":"2025-07-22T01:33:10.883Z","repository":{"id":69350824,"uuid":"238841836","full_name":"fukuchi/Omeka-S-module-mroonga-search","owner":"fukuchi","description":"Omeka S module enabling Mroonga engine for CJK-ready full-text search.","archived":false,"fork":false,"pushed_at":"2021-08-23T15:02:23.000Z","size":18,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-24T14:46:27.993Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fukuchi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2020-02-07T04:14:28.000Z","updated_at":"2021-12-09T03:22:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"d44be6e8-63b0-4ad2-87a2-96d010b5e704","html_url":"https://github.com/fukuchi/Omeka-S-module-mroonga-search","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/fukuchi/Omeka-S-module-mroonga-search","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fukuchi%2FOmeka-S-module-mroonga-search","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fukuchi%2FOmeka-S-module-mroonga-search/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fukuchi%2FOmeka-S-module-mroonga-search/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fukuchi%2FOmeka-S-module-mroonga-search/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fukuchi","download_url":"https://codeload.github.com/fukuchi/Omeka-S-module-mroonga-search/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fukuchi%2FOmeka-S-module-mroonga-search/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266409573,"owners_count":23924286,"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-07-21T11:47:31.412Z","response_time":64,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":"2024-10-14T22:12:49.729Z","updated_at":"2025-07-22T01:33:10.786Z","avatar_url":"https://github.com/fukuchi.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"Mroonga search (module for Omeka S)\n===================================\n\nMroonga search is a module for [Omeka S](https://omeka.org/s/) that enables\nCJK-ready full-text search by activating the [Mroonga](https://mroonga.org/)\nplugin of MySQL or MariaDB.\n\nThe default installation of the full-text search feature of the Omeka S is not\nCJK (Chinese, Japanese, Korean) ready because of the limitation of the database\nengine (MySQL or MariaDB). The Mroonga plugin extends the database to achieve\nCJK-ready search. This module simply activates this plugin by modifying the\ntable information that used by Omeka S.\n\n\nInstallation\n------------\n\n### Preparation\n\nFirst of all, **back up your database**. This module modifies the table schema,\nand that may cause unrecoverable failure.\n\nBefore installing this module, install and configure the Mroonga plugin to\nenable the Mroonga storage engine. For example, if you use MariaDB on Debian or\nUbuntu machine, install 'mariadb-plugin-mroonga' package. Please read the\n[official document](https://mroonga.org/docs/install.html) for further\ninformation.\n\n### From ZIP\n\nSee the [release page](https://github.com/fukuchi/Omeka-S-module-mroonga-search/releases)\nand download the latest `MroongaSearch.zip` from the list. Then unzip it in the\n`modules` directory of Omeka S, then enable the module from the admin\ndashboard. Read the\n[user manual of Omeka S](https://omeka.org/s/docs/user-manual/modules/)\nfor further information.\n\n### From GitHub\n\nPlease do not forget to rename the directory from `Omeka-S-mroonga-search` to\n`MroongaSearch` in the `modules` directory.\n\n### Configuration\n\nNo configuration is needed. Once installed, the database will be updated,\nenabling full-text search.\n\n### Uninstall\n\nSimply uninstall this module to remove Mroonga settings from your database.\nNo additional work is needed.\n\n\nNotes\n-----\n\nThis module highly depends on the database structure of Omeka S 3.x. If you are\nupgrading Omeka S from 3.x to 4.x or later, we highly recommend you uninstall\nthis module **before upgrading**.\n\nWe have not heavily tested the Mroonga engine with large-sized data yet. For\nan advanced full-text search, we recommend that you check the\n[Solr module](https://omeka.org/s/modules/Solr/).\n\nCurrently, this module uses the default N-gram parser. MeCab or any parsers are\nnot supported yet.\n\n### Technical note\n\nMroongaSearch module changes the storage engine of the fulltext\\_search table\nof your Omeka S instance from InnoDB to Mroonga. This enables CJK-friendly fast\nfull-text search while it increases the size of the database.\n\n\nTODOs\n-----\n\n* Enabling synonyms\n\n\nLicensing information\n---------------------\n\nCopyright (c) 2020, 2021 Kentaro Fukuchi\n\nThis module is released under the MIT License. See the `LICENSE` file for the\ndetails.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffukuchi%2Fomeka-s-module-mroonga-search","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffukuchi%2Fomeka-s-module-mroonga-search","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffukuchi%2Fomeka-s-module-mroonga-search/lists"}