Category: Database

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

How to Compile and Install Redis 3.2.6 on Linux

Note: For Redis installation and startup, we use the user jjzb here. Please create the relevant user in advance. The installation path is /home/jjzb/redis; you can modify it according to your situation.

1.Compile and install [root@localhost ~]#yum -y install gcc gcc-c++ libstdc++-devel tcl wget vim …

Low Redis Hit Rate

Here are the issues encountered during today’s performance testing, summarized below.
1. Problem
While testing a certain interface, it was found that the keyspace_misses in Redis kept increasing, meaning the number of cache misses was continuously rising.

2. Troubleshooting and Analysis Process
1) The number of keys returned by the DBSIZE command was greater than the count obtained from KEYS *, indicating…

ALTER DATABASE OPEN Command Error Fix

SQL> alter database open; #The command fails with the following error: ERROR at line 1:
ORA-10458: standby database requires recovery
ORA-01152: file 1 was not restored from a sufficiently old backup
ORA-01110: data fi …