react配置记录
react 代码配置笔记 next 安装 ant-design 过程 1 2 3 4 5 6 7 8 9 10 yarn add @zeit/next-css # 安装 可以在 react 上写 css的框架 yarn add antd # 安装 ant-design yarn add babel-plugin-import # 安装 babel 按需加载 1 2 3 4 5 6 7 8 9 10 11
redis conf 配置
以下为redis.conf的文件的中文描述,整理于网络 1 2 3 4 5 6 7 8 9 10 11 12 # Redis 配置文件示例 # 注意单位: 当需要配置内存大小时, 可能需要指定
redis rdb 和 aof机制
redis rdb 和 aof 机制 rdb: redis database 在指定时间内将内存中的数据集快照写入磁盘,实际操作过程就是一个 fork 一个子进程,先将数据写入临时文件,写入成功 后再替换之前的文
redis部署过程
1. Redis部署 以下以Linux系统为例 1.1 下载和编译 1 2 3 4 $ wget http://download.redis.io/releases/redis-4.0.7.tar.gz $ tar xzf redis-4.0.7.tar.gz $ cd redis-4.0.7 $ make 编译完成后会在src目录下生成Redis服务端程序red
redis介绍
1. redis是什么?(what) Redis是一个开源(BSD许可),内存存储的数据结构服务器,可用作数据库,高速缓存和消息队列代理。它支持字
redis配置 英文版
本文来自redis 官方配置文件 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 # Redis configuration file example. # # Note that in order to read the configuration file, Redis must be # started with the file path as first argument: # # ./redis-server /path/to/redis.conf # Note on units: when
redis哨兵集群使用
1. 部署Redis集群 redis的安装及配置参考[redis部署] 本文以创建一主二从的集群为例。 1.1 部署与配置 先创建sentinel目录,在该目
redis数据结构
redis IO多路复用 redis 为什么最大 512M redis中用int来修饰len字段,int为4个字节,也就是32位,那么最大能表示 $2^32$ 次方。所以2^32/8/1
RWMutex
rwlock 这一类并发读写问题叫作 readers-writers 问题,意思就是,同时可能有多个读或者多个 写,但是只要有一个线程在执行写操作,其它的线程都不能执行读写操作。 RWMutex 的方