The difference between es and redis
ElasticSearch
Course Recommendation →: "Elasticsearch Full Text Search Practical Combat" (Practical Video)
From the Course "Ten Million Level Data Concurrency Solution (Theoretical Practical Combat)"
Compared with MongoDB and Redis, ES, which was released a year later, may be less well-known, but ES's reputation in the search engine field is definitely resounding. Compared with other high-end database products, ES has a much more humble background.
The founder of ES, Shay Banon, was once an unemployed programmer. He created ES to facilitate his wife’s search for recipes when he had nothing to do (of course, it was not called ES at the time). Unexpectedly, through unintentional intervention, the most popular search engine database was created today. Sure enough, girls are the biggest motivation for programmers to work!
ES has also established its own Elastic company and has received hundreds of millions of dollars in financing. Shay Banon, the loser programmer at that time, has already counterattacked to become CEO and reached the pinnacle of his life. Programmers, after reading this story, have you already begun to imagine the day when you become CEO and marry Bai Fumei?
The characteristic of ES, as its name suggests, is search. Strictly speaking, ES is not a database, but a search engine, and all aspects of ES are designed around search. ES supports full-text search. Here is a brief explanation of what full-text search is: For data such as "I work in an Internet company in Beijing", if you search for keywords such as "Beijing", "Internet" and "work", you can hit this If there is a piece of data, this is full-text search. Baidu and Google that you use every day are full-text searches.
It is worth mentioning that ES’s full-text search also has good support for Chinese (there are many Chinese word segmenters alone), which can definitely meet the full-text search needs of most people in China. In addition to searching, ES will automatically index all fields for you to achieve high-performance complex aggregation queries. Therefore, as long as the data is stored in ES, no matter how complex the aggregation query is, you can get good performance, and You no longer have to worry about how to create various complex indexes.
Having said so many advantages of ES, do you think ES is almost omnipotent?
Unfortunately not, ES also has many shortcomings. The most obvious ones are that field types cannot be modified, low writing performance and high hardware resource consumption. As mentioned earlier, ES will automatically create indexes for you. Although this can bring many benefits to full-text search and aggregate queries and save you the trouble of building indexes, this feature will also bring a lot of problems.
ES needs to establish Mapping in advance before creating fields. Mapping contains type information of each field. ES needs to establish appropriate indexes for fields based on Mapping. Due to the existence of this Mapping, the type of a field in ES cannot be modified once it is created.
(For example, you forgot to add full-text search to a field in the data table you built. You want to add it temporarily, but the table has already been built and has a lot of data. What should you do at this time? No Sorry, you can only delete the entire data table and rebuild it again!)
Therefore, ES is higher than MySQL in data structure flexibility but far inferior to MongoDB. The shortcomings of ES are not limited to these. Automatic index creation also affects the writing performance of ES, which is significantly lower than MongoDB.
For the same data, the storage space occupied by ES is significantly larger than that of MongoDB (can you build so many indexes without taking up space?), and the consumption of hardware resources is also very powerful. A 64G memory SSD is basically used for large amounts of data. It is standard and can be regarded as an aristocratic service in the database. Therefore, if your boss is very stingy, you should be careful when choosing ES!
The full-text search feature of ES makes it a powerful tool for building search engines. In addition, ES supports complex aggregation queries very well. This feature also makes ES very suitable for data analysis.
In fact, ES has also specially made its own ELK suite to provide you with a one-stop service from log collection to data visualization analysis. It is definitely a powerful tool for building a high-end data analysis platform.
However, the shortcomings of ES's high cost and low writing performance also make it unsuitable for use in scenarios where the data value is not high, writing performance is required, the data volume is large, and the cost is limited. .
Redis
Redis is the most popular key-value database now. It was released in 2009 together with MongoDB and is also a masterpiece of databases in the early big data era.
The biggest feature of Redis is of course the simplicity and high performance brought by key-value storage. The so-called key-value storage means that each record only contains a Key for querying data, and the corresponding value for storing data, just like house numbers and residents in real life, without conventional databases such as tables and fields. Complex concepts that are necessary in , all queries rely only on key values.
Therefore, the key-value database can be said to be the simplest data structure in the database. Thanks to this simple structure, and the fact that Redis will load all data into memory, Redis can achieve much higher results. The read and write performance of conventional databases such as MongoDB. Of course, the function of Redis is not just as simple as key-value storage. Compared with its key-value predecessor Memcached, Redis also supports data persistence, various data structures such as list and set, and a series of functions such as master-slave replication and backup. Therefore, Redis is definitely the most comprehensive and easiest-to-use key-value database.
Redis’ key-value storage brings performance advantages, but it also brings many limitations to complex queries. Since important features such as data tables and fields are eliminated, and all queries rely on keys, Redis cannot provide complex query functions such as multi-column queries and section queries that conventional databases have.
At the same time, because Redis needs to store data in memory, this also greatly limits the amount of data that Redis can store, which also determines that Redis is difficult to use in application scenarios with large data scales.
Redis sacrifices functions such as data tables and complex queries in conventional databases in exchange for great performance improvements. It is especially suitable for those who have extremely high requirements for read and write performance and have simple data table structures (key-value , list, set, etc.), the query conditions are also simple application scenarios.
If your data table structure is quite complex and you often need to do some complex query operations, then you'd better stick to MongoDB or SQL.
For more Redis related knowledge, please visit the Redis usage tutorial column!
The above is the detailed content of The difference between es and redis. For more information, please follow other related articles on the PHP Chinese website!

Redis是现在最热门的key-value数据库,Redis的最大特点是key-value存储所带来的简单和高性能;相较于MongoDB和Redis,晚一年发布的ES可能知名度要低一些,ES的特点是搜索,ES是围绕搜索设计的。

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于redis的一些优势和特点,Redis 是一个开源的使用ANSI C语言编写、遵守 BSD 协议、支持网络、可基于内存、分布式存储数据库,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis Cluster集群收缩主从节点的相关问题,包括了Cluster集群收缩概念、将6390主节点从集群中收缩、验证数据迁移过程是否导致数据异常等,希望对大家有帮助。

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis实现排行榜及相同积分按时间排序,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,希望对大家有帮助。

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于原子操作中命令原子性的相关问题,包括了处理并发的方案、编程模型、多IO线程以及单命令的相关内容,下面一起看一下,希望对大家有帮助。

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis实现排行榜及相同积分按时间排序,本文通过实例代码给大家介绍的非常详细,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了bitmap问题,Redis 为我们提供了位图这一数据结构,位图数据结构其实并不是一个全新的玩意,我们可以简单的认为就是个数组,只是里面的内容只能为0或1而已,希望对大家有帮助。

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于实现秒杀的相关内容,包括了秒杀逻辑、存在的链接超时、超卖和库存遗留的问题,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

SublimeText3 Chinese version
Chinese version, very easy to use

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
