1.线性表定义
零个或多个数据元素的有限序列
2.线性表逻辑特性
- 除第一个和最后一个元素外,每个元素只有一个前驱和一个后继
- 第一个元素没有前驱元素
- 最后一个元素没有后继元素
又开新坑😂,这次是从最基础的知识起,这都是上学时候欠下的债啊!
好好把基础打扎实一些,让自己更加有实力,加油!
每次登陆服务器都要输入密码,重复无用的操作让人心生厌烦。“懒人是推动社会进步的动力”,我的宗旨就是能自动的就不要手动。
下面就像大家介绍我是如何打造无密码登录服务器:
没有删库跑路,却有删库勒索比特币!哈哈哈哈😄
下面给大家讲述一下今年六一儿童节发生了啥和咋解决的。
1 | PUT /lujiahao123 |
1 | <!-- Spring Boot Elasticsearch 依赖 --> |
1 |
|
1 |
|
1 |
|
1 | .class) (SpringRunner |
1 | <!--elasticsearch--> |
同上
1 |
|
1 | .class) (SpringRunner |
1 | https://github.com/lujiahao0708/LearnSeries/tree/master/LearnElasticSerach |
本文同步发表在公众号,欢迎大家关注!😁
后续笔记欢迎关注获取第一时间更新!
语法格式:
PUT /index/type/id
{
"json数据"
}
输入:
PUT /person/chinese/1
{
"id":12345,
"name":"lujiahao",
"age":18
}
输出:
{
"_index": "person",
"_type": "chinese",
"_id": "1",
"_version": 1,
"result": "created",
"_shards": {
"total": 2,
"successful": 1,
"failed": 0
},
"created": true
}
es会自动建立index和type,不需要提前创建,而且es默认会对document每个field都建立倒排索引,让其可以被搜索。
格式:
GET /index/type/id
输入:
GET /person/chinese/1
输出:
{
"_index": "person",
"_type": "chinese",
"_id": "1",
"_version": 1,
"found": true,
"_source": {
"id": 12345,
"name": "lujiahao",
"age": 18
}
}
格式:
PUT /index/type/id
{
"json数据"
}
输入:
PUT /person/chinese/1
{
"name":"lujiahao123"
}
输出:
{
"_index": "person",
"_type": "chinese",
"_id": "1",
"_version": 2,
"result": "updated",
"_shards": {
"total": 2,
"successful": 1,
"failed": 0
},
"created": false
}
查询:
{
"_index": "person",
"_type": "chinese",
"_id": "1",
"_version": 2,
"found": true,
"_source": {
"name": "lujiahao123"
}
}
替换方式更新文档时,必须带上所有的field,才能去进行信息的修改;如果缺少field就会丢失部分数据。其原理时替换,因此需要全部字段。不推荐此种方式更新文档。
格式:
POST /index/type/id/_update
{
"doc":{
"json数据"
}
}
输入:
POST /person/chinese/1/_update
{
"doc":{
"name":"lujiahao10010"
}
}
输出:
{
"_index": "person",
"_type": "chinese",
"_id": "1",
"_version": 4,
"result": "updated",
"_shards": {
"total": 2,
"successful": 1,
"failed": 0
},
"created": false
}
再次查询:
{
"_index": "person",
"_type": "chinese",
"_id": "1",
"_version": 6,
"found": true,
"_source": {
"id": 12345,
"name": "lujiahao10010",
"age": 18
}
}
格式:
DELETE /index/type/id/_update
{
"doc":{
"json数据"
}
}
输入:
DELETE /person/chinese/1
输出:
{
"found": true,
"_index": "person",
"_type": "chinese",
"_id": "1",
"_version": 7,
"result": "deleted",
"_shards": {
"total": 2,
"successful": 1,
"failed": 0
}
}
再次查询:
{
"_index": "person",
"_type": "chinese",
"_id": "1",
"found": false
}
本文所有操作都是在kibana的Dev tools中进行的,相较于Elasticsearch-Heade插件,kibana中更加方便与美观(个人观点),推荐大家使用。
本文同步发表在公众号,欢迎大家关注!😁
后续笔记欢迎关注获取第一时间更新!