3.elasticsearch-head
程序员文章站
2022-07-14 22:33:11
...
git clone git://github.com/mobz/elasticsearch-head.git
cd elasticsearch-head
npm install
npm run start
打开链接
http://localhost:9100/
注意点 修改elasticsearch的配置文件yml
http.cors.enabled: true
http.cors.allow-origin: "*" # 允许访问的IP地址段,* 为所有IP都可以访问
使用随机数多创建些数据
<?php
require 'vendor/autoload.php';
use Elasticsearch\ClientBuilder;
// 实例化一个客户端
$client = ClientBuilder::create()->build();
// 索引一个文档(创建一条数据)
$params = [
'index' => 'my_index',
'type' => 'my_type',
'id' => 'my_id'.rand(1,1000),
'body' => [
'testField' => 'abc'.rand(1,1000),
'name' => '张三'.rand(1,1000),
'age' => rand(10,100),
]
];
$response = $client->index($params);
print_r($response);
上一篇: hive程序报FAILED: Execution Error, return code 2 from org.apache.hadoop.hive.ql.exec.mr.MapRedTask
下一篇: 使用 rem 布局 实现H5页面自适应
推荐阅读