Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
47 deletions.
There are no files selected for viewing
This file contains 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,47 +1 @@ | ||
| mroonga : MySQL Storage Engine for Groonga | ||
|
|
||
| This program is a MySQL pluggable storage engine and | ||
| designed for embedding groonga into MySQL. | ||
|
|
||
| To build mroonga within MySQL source code, please proceed following steps. | ||
|
|
||
| 1. copy entire directory to $MYSQL_SRC/storage/ | ||
|
|
||
| 2. configure MySQL with following options: | ||
|
|
||
| --with-plugins=mroonga | ||
| --with-mysqld-libs="-lgroonga" | ||
|
|
||
| 3. make and make install | ||
|
|
||
| To build mroonga by standalone, please proceed following steps. | ||
|
|
||
| 1. configure mroonga with following options: | ||
|
|
||
| --with-mysql=PATH | ||
| --libdir=PATH | ||
|
|
||
| PATH for --with-mysql is MySQL source directory. | ||
| PATH for --libdir is MySQL binary plugin directory or | ||
| wherever you want to install. | ||
|
|
||
| 2. make and make install | ||
|
|
||
| Standalone build example | ||
|
|
||
| If you have MySQL source at /usr/local/src/mysql-5.1.45 and | ||
| if you have MySQL binary at /usr/local/mysql, configure | ||
|
|
||
| options should be .. | ||
|
|
||
| ./configure \ | ||
| --with-mysql=/usr/local/src/mysql-5.1.45 \ | ||
| --libdir=/usr/local/mysql/lib/mysql/plugin | ||
|
|
||
| After "make install", you can install mroonga by SQL command | ||
|
|
||
| mysql> INSTALL PLUGIN mroonga SONAME 'libmroonga.so'; | ||
|
|
||
| -- | ||
| Tetsuro IKEDA <te.ikeda@jpta.scs.co.jp> | ||
|
|
||
| See doc/ja/build/html/index.html |