摘要:
快速排序的时间复杂度位O(nlogn),记忆口诀:跟着我右手左手一个慢动作,右手左手慢动作重播。 阅读全文
摘要:
连接地址http://blog.csdn.net/kingcat666/article/details/77936970 阅读全文
摘要:
代码: 说明:由于我本机没有安装数据库,数据库是在远程访问的,故地址不是localhost 阅读全文
摘要:
准备工作: 1.下载mysql-connector-java-5.1.45.zip包到本地 2.配置好远程数据库配置文件,我的是在虚拟机上模仿的,文件位置在/etc/mysql/mysql.conf.d/mysqld.cnf,找到bind-address = 127.0.0.1注释掉,允许远程访问 阅读全文
摘要:
package RedisTest; import redis.clients.jedis.Jedis; public class RedisTest { private static String HOST ="192.168.43.22"; private static int PORT = 6379; public static void main(String[] args) {... 阅读全文
摘要:
# __author__ = 'STEVEN' import redis,time # 方式1,直接链接操作 # r = redis.Redis(host='192.168.43.22',port=6379) # r.set('name','lisi') # print(r.get('name').decode()) # 方式2,创建进程池 poll = redis.ConnectionPoo... 阅读全文
摘要:
# __author__ = 'STEVEN' import redis,time #连接池 polls = redis.ConnectionPool(host='192.168.43.22',port='6379') # 从连接池中选择连接 r = redis.Redis(connection_pool=polls) # #hset()操作,一次设置一个key-value值,如果key存在,... 阅读全文
摘要:
http://www.lanceyan.com/tech/arch/mongodb_shard1.html 阅读全文
摘要:
代码: 友情链接: redis官方文档(http://www.runoob.com/redis/connection-select.html) 阅读全文
摘要:
目标: 代码实现(direct_product.py) 1 # __author__ = 'STEVEN' 2 import pika,sys 3 #开启socket 4 connection = pika.BlockingConnection(pika.ConnectionParameters(' 阅读全文