摘要:
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. Example: 阅读全文
摘要:
Implement pow(x, n), which calculates x raised to the power n (x,n). Example 1: Input: 2.00000, 10 Output: 1024.00000 Example 2: Input: 2.10000, 3 Out 阅读全文
摘要:
Redis提供了主从复制功能,主要是为了保证服务的高可用性。在redis.conf配置文件中通过设置,可以开启主从复制功能。或者在客户端中使用slaveof 命令开启该功能。 Redis 同步的是指令流,主服务器会将那些对自己的状态产生改变的指令记录在本地的内存 缓存 中,然后异步将缓存中的指令同步 阅读全文