We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
区别,为什么需要多一层
为什么不能不是ES 作为数据存储
搜索包括模糊查询
The text was updated successfully, but these errors were encountered:
数据库存储的一般是结构化、半结构化等数据
数据库索引是对字段的重排序 但是对于like "%dsaf%" 这样的模糊查询数据库索引是起不了作用的
ES 做的事就是建立一个反向索引机制,将数据关键词抽取,然后进行索引排序
Sorry, something went wrong.
ES 本身也可以作为NoSQL数据库,schema-free 原因在于
默认在索引中保存原始数据,并可获取(Lucene 的store功能)
有translog,不会丢数据
http://jolestar.com/elasticsearch-architecture/
No branches or pull requests
区别,为什么需要多一层
为什么不能不是ES 作为数据存储
搜索包括模糊查询
The text was updated successfully, but these errors were encountered: