摘要:
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contai 阅读全文
摘要:
使用连接池的好处暂且不说,本文主要探讨Redis连接池的原理方式 要使用Redis,首先应该建立一个Redis客户端,比如: 在建立Redis客户端的时候,可以指定max_connections参数,这个参数指定了连接池中连接的数量 当读写Redis的时候,首先将传入的参数命令做一些处理,然后进入 阅读全文
摘要:
1 a thread-unsafe code version: 1.1 correct version 1: 1.2 correct version 2 and its pros and cons: Another approach is to pass the integer i directly 阅读全文