Time of Update: 2018-07-26
1.安裝依賴 yum install -y wget gcc make tcl 2.下載源碼並安裝 進入redis官網 https://redis.io/download/ 下載最新版 wget http://download.redis.io/releases/redis-4.0.6.tar.gz tar xzf redis-4.0.6.tar.gz cd redis-4.0.6 make make test make
Time of Update: 2018-07-26
連結Redis資料庫 package com.ithiema.jedis;import org.junit.Test;import redis.clients.jedis.Jedis;import redis.clients.jedis.JedisPool;import redis.clients.jedis.JedisPoolConfig;public class JedisTest { //通過java程式訪問redis資料庫 @Test
Time of Update: 2018-07-26
使用的資源: nginx主伺服器一台,nginx備伺服器一台,使用keepalived進行宕機切換。 tomcat伺服器兩台,由nginx進行反向 Proxy和負載平衡,此處可搭建伺服器叢集。 redis伺服器一台,用於session的分離共用。 nginx主伺服器:192.168.50.133 nginx備伺服器:192.168.50.135 tomcat專案服務器1:192.168.50.137 tomcat專案服務器2:
Time of Update: 2018-08-16
基本的學習流程請查看 泥瓦匠的blog http://www.bysocket.com/?cat=72 他的各個小節的例子 https://github.com/JeffLi1993/springboot-learning-example sms-server POM.XML,由於項目主要是用來發簡訊服務的,所以其他依賴包加上也無妨,不影響 打war包的方式如下面所示 <project xmlns="http://maven.apache.org/POM/4
Time of Update: 2018-08-16
springboot整合Redis 前言 Redis是目前使用的非常廣泛的記憶體資料庫,相比memcached,它支援更加豐富的資料類型。本來簡要介紹在springboot中使用redis的方法。 如何使用。 1、引入spring-boot-starter-redis <!-- redis --><dependency> <groupId>org.springframework.boot</groupId> <
Time of Update: 2018-08-21
https://segmentfault.com/a/1190000012947169 業務背景 系統需要對接某IM廠商rest介面,向用戶端推送訊息(以及其他IM業務) 該廠商對rest介面調用有頻率限制:總rest調用9000次/30s;訊息推送600次/30s 系統為分布式叢集,需要控制整個分布式叢集總的介面調用頻率滿足以上限制 Guava RateLimiter 上篇文章 《Guava RateLimiter源碼解析》中介紹了Guava
Time of Update: 2018-04-19
標籤:span www. flush 序號 color 一起 冒號 style 其他 大量刪除KeyRedis 中有刪除單個 Key 的指令 DEL,但好像沒有大量刪除 Key
Time of Update: 2017-04-13
標籤:zabbix監控zabbix監控redishttp://www.21yunwei.com/archives/4195zabbix監控mysql效能http://www.ttlsa.com/zabbix/zabbix-monitor-mysql/zabbix監控mysql裝態http://www.linuxidc.com/Linux/2016-04/130436.htmzabbix監控php-fpm效能狀態http://www.ttlsa.com/zabbix/zabbix-monitor-
Time of Update: 2014-09-01
標籤:blog http os 使用 java ar 檔案 資料 art Redis學習資源:1、Redis學習手冊http://www.cnblogs.com/stephen-liu74/ar
Time of Update: 2018-07-31
標籤:roc 中介軟體 業務 版本 配置系統 代碼產生器 響應式 bootstra 資料庫配置 源碼結構JEESZ驅動式項目構建內建高效可靠的代碼產生器支援多種資料模型,根據資料庫表產生常規重複
Time of Update: 2018-07-13
標籤:etc cti clust time 整合 red public private tps 前提:搭建好redis叢集環境,搭建方式請看:https://www.cnblogs.com/xy
Time of Update: 2015-06-25
標籤:因公司資料安全和分析的需要,故調研了一下 GlusterFS + lagstash + elasticsearch + kibana 3 + redis 整合在一起的日誌管理應用:安裝,配置過程,使用方式等續一,glusterfsDistributed File System部署:說明:公司想做網站業務日誌及系統日誌統一收集和管理,經過對mfs, fastdfs 等Distributed File System的調研,最後選擇了
Time of Update: 2015-04-08
標籤:上下文 監控 redis對事務的處理目前還非常簡單,Redis只能保證一個client發起的事務中的命令可以連續的執行,而中間不會插入其他client的命令,當一個client在一個串連中發出multi命令的時候,這個串連會進入一個事務上下文,該串連後續的命令不會立即執行,而是先放到一個隊列中,當執行exec命令時,redis會順序執行隊列中的所有命令。 multi 標記一個事務塊的開始。
Time of Update: 2014-07-09
標籤:redis 的string類型相關操作*redis用戶端中的使用: =============一種:string類型的方法================ 介紹:string是redis的最簡單類型,一個key對應一個value,string類型是二進位安全的。
Time of Update: 2014-07-09
標籤:des style http color 使用 檔案 ref: http://redis.io/topics/cluster-spec1. 設計目標: 高效能;線性擴充;不支援合併作業;寫操作安全:小機率丟棄;(對於每個key)只要有一個slave工作,就可用;Redis
Time of Update: 2014-09-23
標籤:io os ar for 資料 問題 cti on c 1、安裝了一下Redis,有綠色版,很方便,配置也很簡單;2、實驗了一下主從複製,效果沒大規模進行,不是很瞭解,Master可以讀寫
Time of Update: 2014-08-30
標籤:style blog http color io strong ar for 資料 對於REDIS來講 其實就是一個字典結構,key ---->value
Time of Update: 2018-12-07
讓Redis使用TCMalloc,實現高效能NOSql伺服器 « Elton's Blog讓Redis使用TCMalloc,實現高效能NOSql伺服器by Elton on 七.28, 2011, under C/C++, Linux, NoSQLTCMalloc(Thread-Caching
Time of Update: 2018-12-07
下面開始編譯phpredis到php的擴充, 入門請參見http://skirt.sinaapp.com/?p=110phpredis項目的首頁:https://github.com/owlient/phpredis到這裡下載最新的代碼,其實說最新,已經一年多沒有更新了。 phpredis提供了便捷的操作for redis服務,順便可以聯絡下怎麼在centos上編譯擴充。 首先下載owlient-phpredis-2.1.1-1-g90ecd17.tar.gz
Time of Update: 2018-12-07
mac lion下內建的apache,擴充很少,另外我自己嘗試用php源碼編譯未通過,因為決定用一個整合的mamp,那就是xampp(一定要安裝那個xampp開發包,不然編譯php擴充的時候會出錯)。在windows和linux 下安裝一些程式或者php的擴充資料很多,而關於mac最新版10.7.4的資料極少。順便提下mac的好用的安裝工具,一個是MacPort,一個是Homebrew.macport可能被牆,安裝時可能會卡住。