Ryan Ho
@koungho
Thu, Jan 23, 2025 9:16 AM
假如你想要提前使用
Misskey
2025.1.0 beta 版的
Pgroonga
全文檢索功能,以下是設置說明。
1. 根據 misskey 的 github 更新 default.yml ,加上全文檢索的設置
2. 在 PostgreSQL 安裝 Pgroonga 擴充功能,請參考 Pgroonga 的說明文件。
3. 執行 pgsql 這個 cli 對 misskey 的資料庫進行操作,針對 note 資料表加上 Pgroonga 的專用索引,SQL指令如下
create index idx_note_text_with_pgroonga on note using pgroonga (text);
如果 note 資...
Ryan He (@ryanhe)
載入新的回覆
1. 根據 misskey 的 github 更新 default.yml ,加上全文檢索的設置
2. 在 PostgreSQL 安裝 Pgroonga 擴充功能,請參考 Pgroonga 的說明文件。
3. 執行 pgsql 這個 cli 對 misskey 的資料庫進行操作,針對 note 資料表加上 Pgroonga 的專用索引,SQL指令如下
create index idx_note_text_with_pgroonga on note using pgroonga (text);
如果 note 資...