


Please help me answer some questions related to `elasticsearch`. I can't see the steps in the document.
Description of completed work:
1. Elasticsearch and related plug-ins have been installed on the local windows machine.
2. Then install the elasticsearch-php client in laravel.
3. Wrote a SearchController as follows:
<code><?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Http\Requests; class SearchController extends Controller { protected $client; public function __construct() { $this->client = \Elasticsearch\ClientBuilder::create()->build(); } public function index() { $params = [ 'index' => 'node', 'type' => 'article', 'body' => [ 'query' => [ 'match_all' => [] ] ] ]; $response = $this->client->search($params); print_r($response); } public function create() { $params = [ 'index' => 'node', 'type' => 'article', 'id' => '1029', 'body' => [ 'query' => [ 'match_all' => [] ] ] ]; $response = $this->client->index($params); print_r($response); } public function store(Request $request) { } public function show($id) { } public function edit($id) { } public function update(Request $request, $id) { } public function destroy($id) { } } </code>
Problem description:
1. Although I have completed the above 3 steps, I have no clue now and I can’t see any steps in the document. The specific performance is: If I want to index and query a data table named articles
now, what else do I need to do? It's best to explain how to do each step. Thanks.
2. What do 'index', 'type' and 'body' mean?
3. If you don’t use mysql and use ES to save the index directly, what directory is the index file in by default?
Reply content:
Description of completed work:
1. Elasticsearch and related plug-ins have been installed on the local windows machine.
2. Then install the elasticsearch-php client in laravel.
3. Wrote a SearchController as follows:
<code><?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Http\Requests; class SearchController extends Controller { protected $client; public function __construct() { $this->client = \Elasticsearch\ClientBuilder::create()->build(); } public function index() { $params = [ 'index' => 'node', 'type' => 'article', 'body' => [ 'query' => [ 'match_all' => [] ] ] ]; $response = $this->client->search($params); print_r($response); } public function create() { $params = [ 'index' => 'node', 'type' => 'article', 'id' => '1029', 'body' => [ 'query' => [ 'match_all' => [] ] ] ]; $response = $this->client->index($params); print_r($response); } public function store(Request $request) { } public function show($id) { } public function edit($id) { } public function update(Request $request, $id) { } public function destroy($id) { } } </code>
Problem description:
1. Although I have completed the above 3 steps, I have no clue now and I can’t see any steps in the document. The specific performance is: If I want to index and query a data table named articles
now, what else do I need to do? It's best to explain how to do each step. Thanks.
2. What do 'index', 'type' and 'body' mean?
3. If you don’t use mysql and use ES to save the index directly, what directory is the index file in by default?
I have just come into contact with es recently
es can correspond to a mysql database
The concept of index is equivalent to a library
The concept of type is equivalent to a table
Document is equivalent to a record
Then if you want to operate, you must first have a library and a table before you can add, delete, check and modify
How to index and search documents
Index files are stored as files under ES_HOME/data
You can go to the official website to find the jdbc plug-in for logstash, jdbc official documentation

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
