https://github.com/geocine/sphinx-se-builds-windows
Sphinx SE build for MySQL Windows - ha_sphinx.dll
https://github.com/geocine/sphinx-se-builds-windows
Last synced: 6 months ago
JSON representation
Sphinx SE build for MySQL Windows - ha_sphinx.dll
- Host: GitHub
- URL: https://github.com/geocine/sphinx-se-builds-windows
- Owner: geocine
- Created: 2012-09-01T06:03:16.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2021-10-30T18:53:59.000Z (almost 4 years ago)
- Last Synced: 2025-02-14T04:33:29.287Z (8 months ago)
- Homepage:
- Size: 1.12 MB
- Stars: 4
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![]()
Sphinx SE Builds for Windows
Sphinx SE build for MySQL Windows. Pre-compiled sphinx storage engine binaries for MySQL
### How to use
1. Download appropriate **ha_sphinx.dll**
2. Paste **ha_sphinx.dll** file to `mysql/lib/plugin`
3. Login to mysql consolemysql -u -p
4. Install plugin
INSTALL PLUGIN sphinx SONAME "ha_sphinx.dll";
5. Still from mysql console execute show engines. It should show sphinx if you have installed it successfully
show engines;
5. If you want to uninstall, here is how to do it.UNINSTALL PLUGIN sphinx;