... # 导入 mysql 数据源 util/Indexer.php --source=mysql://root@localhost/test --sql="select * from tbl_post" # 导入 sqlite 数据源 util/Indexer.php --source=sqlite:///tmp/test.db --sql="select * from tbl_post" ~~~ 导入 CSV 数据 ------------- 要导入 CSV 数据库文件,必须使用 ...
...l->pid = 321; $model->subject = 'hello world'; $model->message = 'just for testing...'; $model->save(); // 更新索引 $model = Demo::findOne(321); $model->message .= ' + updated'; $model->save(); // 添加或更新索引还支持以方法添加索引词或文本 // 这样做的目的是使得...