Category: Database

MySQL (102)
Oracle (26)
Redis (8)
SQLServer (2)

How to Install DBSyncer Data Sync Tool

Project URL: https://gitee.com/ghi/dbsyncer
DBSyncer (abbreviated as dbs) is an open-source data synchronization middleware that supports MySQL, Oracle, SqlServer, PostgreSQL, Elasticsearch(ES), Kafka, File, SQL, and more …

MySQL and MariaDB Version Compatibility

MariaDB is a great open-source MySQL fork alternative (alongside others like Percona MySQL), but before switching from MySQL to MariaDB, you really need to understand the basic version correspondence between them. Otherwise, you’re likely to run into many …

MySQL Benchmarking Tool Sysbench

yum -y install sysbench

echo "* hard nofile 65535
* soft nofile 65535
">>/etc/security/limits.conf

ulimit -a

core file size (blocks, -c) 0
data seg size (kbytes, -d) unlim …

How to Install Redis With Docker

Check the updated Redis version under Docker:

https://hub.docker.com/_/redis?tab=tags

docker pull redis:latest #Pull the image docker images #List images
Start the image: Below is an example of starting three Redis instances, mapped to external ports 637 …

Redis Snapshot Disabled Causing Persistence Failure

Redis reports a persistence error during program execution.

Solution:
1. Modify the configuration file:
vi redis.conf stop-writes-on-bgsave-error no # Change the value from yes to no. If this line does not exist, append it to the end.
Other optimizations can be applied as needed…