Skip to content

Latest commit

 

History

History
55 lines (32 loc) · 1.17 KB

week31.md

File metadata and controls

55 lines (32 loc) · 1.17 KB

kibana搜索时 转义特殊字符

ELK:kibana使用的lucene查询语法

+ - = && || > < ! ( ) { } [ ] ^ " ~ * ? : \ / 以上字符当作值搜索的时候需要用\转义

\(1\+1\)\=2用来查询(1+1)=2

https://segmentfault.com/a/1190000002972420

数据同步的2种情况

  1. 由程序自动同步

强一致性。强制同步2个表。

  1. 由用户触发后,才同步。 保证最终一致性。

懒加载

Golang小数float64在实际工程中加减乘除的精度问题

https://blog.csdn.net/muhongzhong/article/details/88880359

  • golang 浮点类型数据精度损失问题的解决方案

https://blog.csdn.net/mario08/article/details/80682093

英语语法

这里为什么不直接用 which 而用 in which 呢?

http://ask.yygrammar.com/q-4831.html

sql中join on两个条件怎么写

SELECT *
  FROM 表1
  LEFT JOIN 表2 
    ON 表1.a=表2.a AND 表1.b=表2.b
 WHERE 条件
LEFT JOIN insure_project ON insure_project.insure_id = insure.id AND insure_project.name = product_category.insure_amount_project 
WHERE ...
  • sql中left join on 多个条件需要特殊注意之处

https://blog.csdn.net/dax1n/article/details/81590910