编辑
2023-11-16
发癫
00

上了大学之后就好久没碰日语了,最近打算重拾日语,毕竟学好了以后也是一门吃饭的活,码农码农,谁知道自己

编辑
2023-11-16
英语单词
00

What is Redis?

Redis is a fast in-memory NoSQL database and cache. Besides open-source, written in C, and designed for speed, Redis means “Remote Dictionary Server”.

Its fundamental data types are strings, lists, hashes, sets, and sorted sets; therefore Redis is often referred to as a data structure server. Many other data structures and capabilities for geolocation and stream processing are also available.

编辑
2023-11-15
redis
00

之前讲server启动的时候有个InitServerLast()函数

c
/* Some st
编辑
2023-11-15
redis
00
c
ubuntu@VM-8-16-ubuntu:~$ strace redis-server // 切换到了执行文件 execve("/usr/local/bin/redis-server", ["redis-server"], 0x7fff26814f30 /* 27 vars */) = 0 brk(NULL) = 0x5575ff3bb000 arch_prctl(0x3001 /* ARCH_??? */, 0x7ffe24c54730) = -1 EINVAL (Invalid argument) mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f1c37962000
编辑
2023-11-15
Redis源码阅读
00