CentOS 5.9下安装配置redis
紧接上文,那时候是大三暑假,迷茫着不知该学些什么东西,无意中看见51cto在推荐Nosql的书,有一本叫做《Nosql数据库入门》,感觉这东西好高深,就立即买了本回来研究,研究了半天也没弄明白这东西是干吗的,原来路真是一步一步走的,Mysql都搞不明白,Nosql
紧接上文,那时候是大三暑假,迷茫着不知该学些什么东西,无意中看见51cto在推荐Nosql的书,有一本叫做《Nosql数据库入门》,感觉这东西好高深,就立即买了本回来研究,研究了半天也没弄明白这东西是干吗的,原来路真是一步一步走的,Mysql都搞不明白,Nosql又怎么能理解呢?
一:安装redis
1.安装redis
wget http://redis.googlecode.com/files/redis-2.6.14.tar.gz tar zxvf redis-2.6.14.tar.gz cd redis-2.6.14 make PREFIX=/usr/local/redis install
二:配置redis
1 使用默认配置文件,稍作修改就可以了
a 习惯做法,配置文件放在源码安装的文件夹下,便于管理吧 mkdir /usr/local/redis/etc/ cp redis-2.6.14/redis.conf /usr/local/redis/etc/ b 修改配置文件 /usr/local/redis/etc/redis.conf (1)Redis默认不是以守护进程的方式运行,可以通过该配置项修改,使用yes启用守护进程 daemonize yes (2)当客户端闲置多长时间后关闭连接,如果指定为0,表示关闭该功能 timeout 300 (3)指定redis日志 logfile /var/log/redis.log (4)指定本地数据库存放目录 dir /data/redis/redis_db c 启动redis /usr/local/redis/bin/redis-server /usr/local/redis/etc/redis.conf
三:测试redis
1 演示一个简单的set key,get key操作...
请先安装php下redis客户端,具体安装参考(https://github.com/nicolasff/phpredis)
<?php $redis = new Redis(); try{ $redis->connect('127.0.0.1',6379); } catch (Exception $e){ die("Cannot connect to redis server:".$e->getMessage() ); } $redis->set('name','budong'); echo $redis->get('name'); ?> 输出budong,则说明安装成功.
2 redis可玩性太多了,运维必备查看redis运行信息,如下:
[root@Cache ~]# /usr/local/redis/bin/redis-cli redis 127.0.0.1:6379> INFO 部分结果如下: redis_version:2.4.7 redis_git_sha1:00000000 redis_git_dirty:0 arch_bits:64 multiplexing_api:epoll gcc_version:4.1.2 process_id:26615 uptime_in_seconds:2717407 uptime_in_days:31 lru_clock:117839 used_cpu_sys:102659.58 used_cpu_user:101565.17 used_cpu_sys_children:125215.15 used_cpu_user_children:807371.44
四:是时候结束了
自言自语:
本篇博客就是自己安装redis的一个脚本的简单回顾,最近各种忙,更多精彩内容,下次继续,先挖坑,后栽树...
参考资料:
redis 官网:http://redis.io/
Redis资料汇总专题: http://blog.nosqlfan.com/html/3537.html
原文地址:CentOS 5.9下安装配置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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

1. Start the [Start] menu, enter [cmd], right-click [Command Prompt], and select Run as [Administrator]. 2. Enter the following commands in sequence (copy and paste carefully): SCconfigwuauservstart=auto, press Enter SCconfigbitsstart=auto, press Enter SCconfigcryptsvcstart=auto, press Enter SCconfigtrustedinstallerstart=auto, press Enter SCconfigwuauservtype=share, press Enter netstopwuauserv , press enter netstopcryptS

The caching strategy in GolangAPI can improve performance and reduce server load. Commonly used strategies are: LRU, LFU, FIFO and TTL. Optimization techniques include selecting appropriate cache storage, hierarchical caching, invalidation management, and monitoring and tuning. In the practical case, the LRU cache is used to optimize the API for obtaining user information from the database. The data can be quickly retrieved from the cache. Otherwise, the cache can be updated after obtaining it from the database.

In PHP development, the caching mechanism improves performance by temporarily storing frequently accessed data in memory or disk, thereby reducing the number of database accesses. Cache types mainly include memory, file and database cache. Caching can be implemented in PHP using built-in functions or third-party libraries, such as cache_get() and Memcache. Common practical applications include caching database query results to optimize query performance and caching page output to speed up rendering. The caching mechanism effectively improves website response speed, enhances user experience and reduces server load.

First you need to set the system language to Simplified Chinese display and restart. Of course, if you have changed the display language to Simplified Chinese before, you can just skip this step. Next, start operating the registry, regedit.exe, directly navigate to HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlNlsLanguage in the left navigation bar or the upper address bar, and then modify the InstallLanguage key value and Default key value to 0804 (if you want to change it to English en-us, you need First set the system display language to en-us, restart the system and then change everything to 0409) You must restart the system at this point.

1. First, double-click the [This PC] icon on the desktop to open it. 2. Then double-click the left mouse button to enter [C drive]. System files will generally be automatically stored in C drive. 3. Then find the [windows] folder in the C drive and double-click to enter. 4. After entering the [windows] folder, find the [SoftwareDistribution] folder. 5. After entering, find the [download] folder, which contains all win11 download and update files. 6. If we want to delete these files, just delete them directly in this folder.

Redis is a high-performance key-value cache. The PHPRedis extension provides an API to interact with the Redis server. Use the following steps to connect to Redis, store and retrieve data: Connect: Use the Redis classes to connect to the server. Storage: Use the set method to set key-value pairs. Retrieval: Use the get method to obtain the value of the key.

gnetlink is supported on all devices running the Linux operating system and having the necessary hardware and drivers. Major Linux distributions that support it include Ubuntu, Debian, RHEL, CentOS, and Fedora.

Causes and solutions for errors when using PECL to install extensions in Docker environment When using Docker environment, we often encounter some headaches...
