https://github.com/oceanbase/oceanbase-plugins
Here are plugins for OceanBase. Please enjoy them.
https://github.com/oceanbase/oceanbase-plugins
Last synced: 6 months ago
JSON representation
Here are plugins for OceanBase. Please enjoy them.
- Host: GitHub
- URL: https://github.com/oceanbase/oceanbase-plugins
- Owner: oceanbase
- License: apache-2.0
- Created: 2025-03-04T15:36:04.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-07-01T13:18:59.000Z (6 months ago)
- Last Synced: 2025-07-01T14:28:54.084Z (6 months ago)
- Language: C++
- Homepage:
- Size: 10.7 MB
- Stars: 0
- Watchers: 8
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# oceanbase-plugins
存放OceanBase的插件代码
# how to build
```bash
mkdir build
cd build
cmake .. -DCMAKE_PREFIX_PATH=`/path/to/oceanbase-plugin-dev-kit` -DCMAKE_INSTALL_PREFIX=./opt
make && make install
```
Then you can get plugin libraries from `build/opt/lib/`.
# how to pack
You can execute the commands below if you want to build RPM package.
```bash
mkdir build
cd build
cmake .. -DCMAKE_PREFIX_PATH=`/path/to/oceanbase-plugin-dev-kit` -DPACK_COMPONENTS=`component-name`
cpack -G RPM
```
`component-name` is the plugin name, such as `jieba-ftparser`.