上一页 1 ··· 91 92 93 94 95 96 97 98 99 ··· 186 下一页
摘要: 一,用systemctl管理es: 1,创建service配置文件: [root@iZ2zejc9t0hf6pnw6sewrxZ config]# vi /lib/systemd/system/elasticsearch.service service文件代码: [root@blog config] 阅读全文
posted @ 2024-07-11 17:33 刘宏缔的架构森林 阅读(268) 评论(0) 推荐(0)
摘要: 一,php代码 1,用composer安装elasticsearch库 [lhdop@blog dignews]$ composer require elasticsearch/elasticsearch 2, 创建索引: //创建索引 public function create(){ //初始化 阅读全文
posted @ 2024-07-11 16:26 刘宏缔的架构森林 阅读(71) 评论(0) 推荐(0)
摘要: 一,创建索引 1,简单创建索引: [lhdop@blog ~]$ curl -X PUT "localhost:9200/my_suoyin" {"acknowledged":true,"shards_acknowledged":true,"index":"my_suoyin"} 2, 查看创建索引 阅读全文
posted @ 2024-07-11 14:44 刘宏缔的架构森林 阅读(634) 评论(0) 推荐(0)
摘要: 一,安装插件 1,查看已安装的插件: [lhdop@blog ~]$ curl -X GET "localhost:9200/_cat/plugins?v&s=component" name component version 2,从命令行安装smartcn分词插件: [lhdop@blog bin 阅读全文
posted @ 2024-07-11 11:53 刘宏缔的架构森林 阅读(441) 评论(0) 推荐(0)
摘要: 一,测试分词命令: 1,查看已安装的插件: [lhdop@blog ~]$ curl -X GET "localhost:9200/_cat/plugins?v&s=component" name component version 2,standard分词 [lhdop@blog ~]$ curl 阅读全文
posted @ 2024-07-11 11:17 刘宏缔的架构森林 阅读(2402) 评论(0) 推荐(0)
摘要: 一,安装需要的库 1,包的地址: https://packagist.org/packages/elasticsearch/elasticsearch 2,文档地址: https://www.elastic.co/guide/en/elasticsearch/client/php-api/curre 阅读全文
posted @ 2024-07-11 09:22 刘宏缔的架构森林 阅读(196) 评论(0) 推荐(0)
摘要: 一,报错信息: laravel在安装完成后初次运行时会报错, Internal Server Error Illuminate\Database\QueryException SQLSTATE[HY000]: General error: 8 attempt to write a readonly 阅读全文
posted @ 2024-07-10 17:05 刘宏缔的架构森林 阅读(447) 评论(0) 推荐(0)
摘要: 一,报错信息: [lhdop@blog site]$ composer create-project --prefer-dist laravel/laravel api Creating a "laravel/laravel" project at "./api" Installing larave 阅读全文
posted @ 2024-07-10 15:12 刘宏缔的架构森林 阅读(600) 评论(0) 推荐(0)
摘要: 一,什么是es? Elasticsearch 是一款近实时的搜索引擎,底层是基于 Lucene 做搜索,再此基础上加入了分布式的特性,以便支持海量数据的存储和搜索 官网: https://www.elastic.co/cn/ 二,下载 1,进入下载页面 在下载页面下载 得到链接地址后可以从服务端直接 阅读全文
posted @ 2024-07-10 14:13 刘宏缔的架构森林 阅读(494) 评论(0) 推荐(0)
摘要: 一,rdb的开启关闭 1, rdb存储方式默认是开启的: 在dir一项指定的存储路径下,可以看到dump.rdb [lhdop@blog redisdata]$ ls dump.rdb 2, 关闭: # Snapshotting can be completely disabled with a s 阅读全文
posted @ 2024-07-10 10:58 刘宏缔的架构森林 阅读(475) 评论(0) 推荐(0)
上一页 1 ··· 91 92 93 94 95 96 97 98 99 ··· 186 下一页