当前位置:网站首页>Common open source databases under Linux, how many do you know?
Common open source databases under Linux, how many do you know?
2022-08-05 03:06:00 【nginx】
1. MySQL
MySQL is an open source relational database management system, a product of Oracle Corporation.It supports multiple storage engines, clusters, full-text indexing, multi-threading, full utilization of CPU resources, multi-user support, and many other very professional functions.
MySQL has become the most popular open source database due to its high performance, low cost and good reliability, and is widely used in web applications and other small and medium-sized projects.Everything from WordPress to Movable Type uses MySQL as the default database.In addition, since Oracle acquired MySQL, it has closed the potential risk of MySQL, so the community adopts the method of branching to avoid this risk, and develops and operates the MariaDB database that is fully compatible with MySQL.
2. MongoDB
MongoDB is an open source, document-oriented and the most popular Nosql database at the moment. It is also a product between relational and non-relational databases.The biggest feature of Mongo is that the query language it supports is very powerful, and its syntax is somewhat similar to an object-oriented query language. It can implement most of the functions similar to single-table query in relational databases, and it also supports indexing of data.It also has the characteristics of high performance, easy deployment, easy use, and convenient data storage.
3. Hadoop
Hadoop is an open source, distributed database based on the column store model.Apache is part of the Hadoop project, and the development language isjava.
Hadoop is different from general relational databases, it is a database suitable for unstructured data storage.Another difference is that Hadoop is column-based rather than row-based.And it is a distributed database with high reliability, high performance, scalability, and based on the relational model.
4. Redis
Redis is an open source, web-enabled, in-memory, key-value store database.Developers can dump entire hashes, lists, sets, and other complex result stores without storing numbers and strings. In addition, Redis provides features such as replication/synchronization and persistence.
Redis is a high-performance key-value database.The emergence of Redis has largely compensated for the insufficiency of key/value storage such as memcached, and can be a good complement to relational databases in some occasions.
5. MariaDB
MariaDB database management system is a fork of MySQL, fully compatible with MySQL, including API and command line, making it an easy replacement for MySQL.In terms of storage engine, XtraDB is used instead of MySQL's InnoDB.Additional functionality has been added to support local non-blocking operations and progress reporting.This means that all connectors, libraries and applications using MySQL will also work under MariaDB.
边栏推荐
- Lexicon - the maximum depth of a binary tree
- Matlab drawing 3
- Syntax basics (variables, input and output, expressions and sequential statement completion)
- sql server 安装提示用户名不存在
- UOS系统下ksql应用缺少动态库”libtinfo.so.5“问题
- 21天学习挑战赛(2)图解设备树的使用
- 2022了你还不会『低代码』?数据科学也能玩转Low-Code啦!
- ASP.NET application--Hello World
- J9 Digital Currency: What is the creator economy of web3?
- QT语言文件制作
猜你喜欢
What should I do if the self-incrementing id of online MySQL is exhausted?
引领数字医学高地,中山医院探索打造未来医院“新范式”
人人都在说的数据中台,你需要关注的核心特点是什么?
.NET Application -- Helloworld (C#)
2022-08-04 The sixth group, hidden from spring, study notes
使用二维码传输文件的小工具 - QFileTrans 1.2.0.1
How to Add Category-Specific Widgets in WordPress
mysql can't Execute, please solve it
lua learning
[Qixi Festival] Romantic Tanabata, code teaser.Turn love into a gorgeous three-dimensional scene and surprise her (him)!(send code)
随机推荐
Flink 1.15.1 Cluster Construction (StandaloneSession)
2022了你还不会『低代码』?数据科学也能玩转Low-Code啦!
高项 02 信息系统项目管理基础
使用二维码传输文件的小工具 - QFileTrans 1.2.0.1
In 2022, you still can't "low code"?Data science can also play with Low-Code!
(11) Metaclass
.NET应用程序--Helloworld(C#)
HDU 1114:Piggy-Bank ← 完全背包问题
剑指Offer--找出数组中重复的数字(三种解法)
QT MV\MVC结构
How to solve the error cannot update secondary snapshot during a parallel operation when the PostgreSQL database uses navicat to open the table structure?
语法基础(变量、输入输出、表达式与顺序语句)
Intersection of Boolean Operations in SuperMap iDesktop.Net - Repairing Complex Models with Topological Errors
Principle and Technology of Virtual Memory
优炫数据库的单节点如何转集群
[Filter tracking] based on matlab unscented Kalman filter inertial navigation + DVL combined navigation [including Matlab source code 2019]
STM32 uses stm32cubemx LL library series tutorial
软链接引发的物理备份问题
通过模拟Vite一起深入其工作原理
Linux下常见的开源数据库,你知道几个?