Rust学习笔记
Rust编程语言入门教程课程笔记
参考教材: The Rust Programming Language (by Steve Klabnik and Carol Nichols, with contributions from the Rust Community)
Lecture 9: Error Handling
use std::error::Error;
use std::io::ErrorKind;
use std::fs::Fil…
es 查询多个索引
第一种做法:
多个索引,用逗号隔开
GET /book_2020_09,book_2021_09/_search第二种做法:
可以用 * 模糊匹配。。比如 book* ,表示查询所有 book开头的 索引。
GET /book*/_search
GET /*book*/_search第二种做…