nodejs总结之redis模块

 1 //创建redis连接服务对象
 2 var redis = require(‘redis‘);
 3
 4 var redisServerIP = ‘127.0.0.1‘;
 5 var redisServerPort= ‘6379‘;
 6
 7 function setup_redis() {
 8     var client = redis.createClient(redisServerPort, redisServerIP);
 9     client.on(‘error‘, function(error) {
10         console.log("RedisServer is error!\n" + error);
11     });
12     client.on("connect", function() {
13         console.log("RedisServer is connected!");
14     });
15     client.on("end", function() {
16         console.log("RedisServer is end!");
17     });
18     return client;
19 }
20
21 module.exports.setup_redis = setup_redis;
时间: 2024-11-14 11:02:55

nodejs总结之redis模块的相关文章

[转]nodejs中的process模块--child_process.exec

1.process是一个全局进程,你可以直接通过process变量直接访问它. process实现了EventEmitter接口,exit方法会在当进程退出的时候执行.因为进程退出之后将不再执行事件循环,所有只有那些没有回调函数的代码才会被执行. 在下面例子中,setTimeout里面的语句是没有办法执行到的. 1 process.on('exit', function () { 2 setTimeout(function () { 3 console.log('This will not ru

redis模块

Redis模块 一.Redis简介 Redis属于键值数据库,支持数据持久化,能够让数据从内存中保存在磁盘里,即使重启服务器数据也依然存在:同时也支持更多 value 类型,除了 string 外,还支持 hash.lists(链表).sets(集合)和 sorted sets(有序集合)几种数据类型. redis 使用了两种文件格式: (1)全量数据(RDB):是把内存中的数据写入磁盘,便于下次读取文件进行加载. (2)增量请求(AOF):是把内存中的数据序列化为操作请求,用于读取文件进行re

22Python标准库系列之Redis模块

Python标准库系列之Redis模块 What is redis? Redis is an open source (BSD licensed), in-memory data structure store, used as database, cache and message broker. It supports data structures such as strings, hashes, lists, sets, sorted sets with range queries, b

SaltStack源码分析之使用Redis模块

Redis模块路径 /usr/lib/python2.6/site-packages/salt/modules/redismod.py Redis模块会首先检查是否安装有Redis的Python驱动 # -*- coding: utf-8 -*- ''' Module to provide redis functionality to Salt .. versionadded:: 2014.7.0 :configuration: This module requires the redis py

pecl安装redis模块失败(redirected but no location)

mac下面用pecl安装redis模块的时候,提示失败: 1 2 3 $ sudo pecl install redis  Package "redis" does not have REST info xml available  install failed 尝试搜索一下: 1 2 $ pecl search redis  File http://pecl.php.net:80/rest/p/packages.xml not valid (redirected but no loc

redis安装与php安装redis模块

一.安装redis 1.下载 wget https://github.com/antirez/redis/archive/2.8.23.tar.gz 2.解压缩 tar -zxvf 2.8.23.tar.gz cd redis-2.8.23/ 3.因为redis官方已经给我们配置好了,生成了makefile文件,所以我们只要make编译和安装就行了 make PREFIX=/usr/local/redis make PREFIX=/usr/local/redis install 4.将redis

介绍nodejs中的path模块的几个方法

webpack中常用的: var path = require('path') 是nodejs中的path模块,介绍一下webpack中常用的几个path模块的方法: 应用node环境的时候,这个path模块的方法经常被用到,处理路径的方法. Nodejs的path模块介绍: 网址:http://nodejs.cn/api/path.html path 模块提供了一些工具函数,用于处理文件与目录的路径.可以通过以下方式使用: const path = require('path'); 或 var

pycharm中使用redis模块入门

数据缓存系统:1:mongodb:是直接持久化,直接存储于硬盘的缓存系统2:redis: 半持久化,存储于内存和硬盘3:memcache:数据只能存储在内存里的缓存系统 redis是一个key-value存储系统,支持的value类型:string,list,set,zset(有序集合),hash(哈希类型),这些数据类型都支持:push/pop,add/remove及取交集并集和差集.这些操作都是原子性的. pyhcarm中安装redis模块 这里我们以python3为例 在cmd里输入 pi

nodejs基础 用http模块 搭建一个简单的web服务器 响应纯文本

首先说一下,我们平时在浏览器上访问网页,所看到的内容,其实是web服务器传过来的,比如我们访问www.baidu.com.当我们在浏览器地址栏输入之后,浏览器会发送请求到web服务器,然后web服务器根据请求所携带的信息,返回内容. 那么,nodejs中的http模块,就是用来搭建web服务器用的. 下面来简单的搭建一个服务器: var http = require("http"); //request:是请求参数,携带这请求所带来的信息.response:是响应参数,携带者将要返回到