国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

? PHP ????? ThinkPHP ThinkPHP6?? Elasticsearch? ???? ??

ThinkPHP6?? Elasticsearch? ???? ??

Jun 20, 2023 pm 12:09 PM
thinkphp elasticsearch ?? ??

?? ??? ???? ??? ???? ????? ????? ?? ??? ???? ?? ??? ????. ???? ??? ?? ??? ?? ??? Elasticsearch? ?? ???? ?? ??? ???? ? ?? ??? ?????.
? ????? ThinkPHP6?? Elasticsearch? ???? ??? ?? ? ?? ??? ???? ??? ?????. ??? ?????.

1??: elasticsearch-php ??
???? ???? ?? elasticsearch-php ?????? ?????

composer require elasticsearch/elasticsearch

? ? ??? ?? ??lasticsearch.php ??? Elasticsearch ?? ?? ??? ???? ???.

return [
    'host' => ['your.host.com'],
    'port' => 9200,
    'scheme' => 'http',
    'user' => '',
    'pass' => ''
];

????? ???? ????? ????. ??? ???? ????? ????? ??? ? ????? ???? https? ???? ???? ???.

2??: laravel-scout ??
laravel-scout? Laravel? Eloquent ORM ?? ??? ?? ?? ??????. Elasticsearch ??? ???? ?? ??? ???? ???? ???.

composer require laravel/scout

3??. : laravel-scout-elastic ??? ??
ThinkPHP6??? Elasticsearch? ??? ?? ?? ??? laravel-scout-elastic? ???? ???. ????? ?? ??? ???? ?????.

composer require babenkoivan/scout-elasticsearch-driver:^7.0

app.php?? scout ? elastic ????? ??

return [
    'providers' => [
        //...
        LaravelScoutScoutServiceProvider::class,
        ScoutElasticsearchElasticsearchServiceProvider::class,
        //...
    ],
    'aliases' => [
        //...
        'Elasticsearch' => ScoutElasticsearchFacadesElasticsearch::class,
        //...
    ],
];

?? ?? configscout.php?? ??? ?? ??? ??? ?? ?????.

'searchable' => [
        AppModelsModel::class => [
            'index' => 'model_index',
            'type' => 'model_type'
        ],
    ],

? ??? ??? Model::class ?? ??? ???? ???? ???? Model::class ??? ???? ??? ??? model_index?, ??? model_type?? ?????.

4??: ?? ?? ??
Model ????? Searchable ??? ???? ??? ?? SearchableArray() ??? ?? ??? ?????.

<?php

namespace AppModels;

use LaravelScoutSearchable;

class Model extends Model
{
    // 使用scout可搜索的trait
    use Searchable;
    
    // 返回可被搜索的模型數(shù)據(jù)
    public function toSearchableArray()
    {
        return [
            'title' => $this->title,
            'content' => $this->content
        ];
    }

toSearchableArray() ??? ?? ??? ??? ??? ???? ? ?????. ???? ? ?? ?? ?????. ??? ?? ??? ?????.

5??: ?? ?? API
????? ?? ?? ??, ?? ?? ? ?? ?? API? ?????. ?? ???? ?? Elasticsearch API? ?? ?? ?? ??? ?????. ??? ??? ?? Elasticsearch ???? ?????.

?? ?? ?? ?? ?? API? ??? ??? ????.

use ElasticsearchClientBuilder;

class SearchController extends Controller
{
    //搜索結(jié)果列表
    public function list(Request $request)
    {
        $searchQuery = $request->input('q'); //搜索關(guān)鍵字

        //搜索操作
        $elasticsearch = ClientBuilder::create()->setHosts(config('elasticsearch.host'))->build();
        $response = $elasticsearch->search([
            'index' => 'model_index', // 索引名稱
            'type' => 'model_type',   // 類型
            'size' => 1000,
            'body' => [
                'query' => [
                    'bool' => [
                        'should' => [
                            ['match' => ['title' => $request->input('q')]],
                            ['match' => ['content' => $request->input('q')]]
                        ]
                    ]
                ]
            ]
        ]);

        //格式化返回結(jié)果
        $result = [];
        foreach ($response['hits']['hits'] as $hit) {
            //搜索評分
            $hit['_score'];
            //搜索到的數(shù)據(jù)
            $result[] = $hit['_source'];
        }

        return json_encode($result);
    }
}

? ??? Elasticsearch?? ????? ???? ElasticsearchClientBuilder ???? ???? ??? ???? ???? ???? ?? ??? ?????. ? API? $request->input('q')? ??? ???? ?? ? ????.

? ??? ????? Elasticsearch? ???? ?? ??? ??? ? ??? ????. ??? ??? ???? ?? ?? ??? ????? ??? ???? ?? ??? ????.

? ??? ThinkPHP6?? Elasticsearch? ???? ??? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!

? ????? ??
? ?? ??? ????? ???? ??? ??????, ???? ?????? ????. ? ???? ?? ???? ?? ??? ?? ????. ???? ??? ???? ???? ??? ?? admin@php.cn?? ?????.

? AI ??

Undresser.AI Undress

Undresser.AI Undress

???? ?? ??? ??? ?? AI ?? ?

AI Clothes Remover

AI Clothes Remover

???? ?? ???? ??? AI ?????.

Video Face Swap

Video Face Swap

??? ??? AI ?? ?? ??? ???? ?? ???? ??? ?? ????!

???

??? ??

???++7.3.1

???++7.3.1

???? ?? ?? ?? ???

SublimeText3 ??? ??

SublimeText3 ??? ??

??? ??, ???? ?? ????.

???? 13.0.1 ???

???? 13.0.1 ???

??? PHP ?? ?? ??

???? CS6

???? CS6

??? ? ?? ??

SublimeText3 Mac ??

SublimeText3 Mac ??

? ??? ?? ?? ?????(SublimeText3)

???

??? ??

??? ????
1601
29
PHP ????
1502
276
???
Samsung Galaxy Buds Pro ???? ??? ??? ??? ? ?? ???? Samsung Galaxy Buds Pro ???? ??? ??? ??? ? ?? ???? Dec 30, 2023 pm 03:44 PM

?? ??? ?? ??? ???? ??? ???? ????? ??? ???? ?? ?????. Samsung Buds ??? ???? ??? ??? ??? ??? ?? ??? ???? ?? ???? ??? ?????. ???? Samsung Buds ???? ?? ????, ?? Samsung Galaxy Buds Pro Bluetooth ???? ???? ??? ??? ???????. Samsung Galaxy Buds Pro Bluetooth ???? ????? ??? Samsung Buds ???? ????? ??? ?? ?????. ? ?? ??? ???? Bluetooth ??? ?? ????. ???? ?? ??????? Bluetooth ?? ??? ?? ? ????. 2??: GalaxyBu ??

Aisi Assistant ?? ?? - Aisi Assistant ?? ???? Aisi Assistant ?? ?? - Aisi Assistant ?? ???? Mar 06, 2024 pm 12:10 PM

?? ?? ???? ?? Aisi Assistant ???? ??? ??? ???? Aisi Assistant ???? ?? ????? ??? ????. ??? ???? ??? ??? ? ????. 1. ?? ??????? ??? ?? ??? ???? ??? ?????(?? ?? ??). 2. ? ?? ??? ?? ?? ??? ????(?? ?? ??). ?? ??? ?? ??(?? ?? ??) 4. ?? ?? ???? ?? ?? ?? ??? ??? ?????(?? ?? ??). 5. ???? ?? ??? ???? ?????? ?????. (?? ?? ??) 6. ??? ??? ????? ??? ???????(?? ?? ??). 7. ?? ? ?? ??? ?????(?? ?? ??). ~ ??

Thunder ??? ?? ?? ?? - Thunder ??? ?? ?? ???? Thunder ??? ?? ?? ?? - Thunder ??? ?? ?? ???? Mar 05, 2024 pm 05:22 PM

?? ?? ???? ????? Thunder Magnet Links ?? ??? ??????. ???? Thunder Magnet Links ??? ?? ????? ?? ?????. ???? ??? ??? ????. 1??: ?? ??? Thunder? ?? ??? ?? ?? ??? ??? ?????. 2??: ?? ?? ????? ??? ??? ?? ?? ??? ??? ??? ???? ???? ??? ?? ??? ?????. 3??: ???? ?? ???? ????? ?????. ????? ???? ????, ?? ????? ??? ?, ??? ?? Download Now? ?????. 4??: ????? ??? ?? ???? ????? ??? ?????. ? ??? ???? ??? ?? ??? ?? ?? ??? ?? ?? ?????. ?? ??? ??? ??? ????.

exescope? ???? ??? ??? ??? ???? exescope? ???? ??? ??? ??? ???? Mar 13, 2024 pm 10:40 PM

exescope? ?? ??? ?????? ??? ???? ?? ??? ? ?? ??? ???? ??? ?? ?????. ??? ?? ????? exescope? ??? ?????? ??? ?? ????? ??? ??? ????? ??????. Exescope ??? ???? 1. eXeScope? ?? ?? ??? ??? ??? ? ?? ???? [??]? ???? ??? ??? ?????. 2. ?????? ?? ?? ???? ? ? ????. 3. ???? ???? ? ???? ??, ??, ??? ?? ?????, ?? ?? ?? ???? ?? ???? ???? ??????? ???? ?? ???? ? ????. ???? ??? ? [??]? ?????.

thinkphp ????? ???? ?? thinkphp ????? ???? ?? Apr 09, 2024 pm 05:33 PM

ThinkPHP ????? ????? ??? ?????: Composer? ????, ???? ????? ???? php bin/console? ????, ?? ???? ??? http://localhost:8000? ?????.

Sunflower ?? ?? ????? ?? ?? - Sunflower ?? ?? ????? ?? ???? Sunflower ?? ?? ????? ?? ?? - Sunflower ?? ?? ????? ?? ???? Mar 04, 2024 pm 10:20 PM

???? ?? ???? Sunflower ?? ?? ?????? ????? ??? ?? ???? Sunflower ?? ?? ?????? ???? ??? ????. ??? Sunflower ?? ?? ????? ?? ??? ?? ?? ????? ??? ???????. ??? ???? ??? ??? ????. 1??: ?? Sunflower ?? ?? ?????? ?? ?????? ??? ????? ????? ?????(?? ??). 2??: ?? ?? ?? ???? ?? ??? ?????(?? ??). 3??: ?? ?? ??? ?? ?? ????? ?? ?????, ???? ?? ?? ???? ?? ??? ???? ?? ??? ? ????(?? ??). 4??: ?? ?? "?? ??"? ???? ???? ??? ?? ????? ???? ?????(?? ??). 5??: ??? ??? ? ???? ???? ?? ???? ???? ???? ?????.

?? ???? ??? ???? ?? ???? ??? ???? Feb 23, 2024 pm 05:10 PM

Little Black Box? ???? ?? ?? ?? ?????, ? ?????? ????? ???? ??? ?????? ???? ? ?????? ??? ? ?? ??? ???? ?? ??? ?? ??? ?? ???. ? ???? ??? ?? ????? ??? ?? ??? ??? ????. ??? ??? ????? ?????! ?????? ?? ???? [2024-01-31] ???????????? ??? ???? ???? ?? [2024-01-31] ???????????? ??? ??? ??? ???? ?? [2024-01- 31] ?????????? ??? ???? ??? ?????? ?????

thinkphp?? ?? ??? ????. thinkphp?? ?? ??? ????. Apr 09, 2024 pm 06:09 PM

ThinkPHP?? ??? PHP ????? ??? ?? ??? ????. ??? ???? 3.2, 5.0, 5.1, 6.0? ????, ??? ??? ??? ???? ??? ??? ???? ? ?????. ?? ?? ??? ThinkPHP 6.0.16???. ??? ??? ? PHP ??, ?? ?? ?? ? ???? ??? ??????. ??? ??? ??? ???? ?? ?? ??? ???? ?? ????.

See all articles