摘要:
参考:https://blog.csdn.net/nanamasuda/article/details/52543177 总的来说,primary key 、unique key 这些key建立的同时索引index也就建好了。primary key 和 unique key 都是唯一记录表的一行数据 阅读全文
摘要:
【【目录】】 当前文件在根目录下一个文件夹下 引用当前文件所在目录上一级目录下某.rb文件 方法一 require File.join(File.dirname(__FILE__),'..','test_one') 方法二 require File.join(__FILE__,'..','..',' 阅读全文
摘要:
参考地址:https://ruby china.org/topics/33843 (1) gem sources add http://gems.ruby china.org 遇到问题: Error fetching https://gems.ruby china.org/: certificate 阅读全文
摘要:
1 Error fetching https://gems.ruby china.org/: certificate verify failed (https://gems.ruby china.org/specs.4.8.gz) 解决办法请参考 本博主“【Ruby】【改gem源镜像】”那篇博客 阅读全文
摘要:
【Navicat_Premium_15.0.26_(15.0.2600).dmg】 网盘里有 问题: 1 2003 - Can’t connect to MySQL server on ‘127.0.0.1’(61 “Connection refused”) 高级->打勾 使用套接字文件:/tmp/ 阅读全文
摘要:
Python 的 asyncio 类似于 C++ 的 Boost.Asio。 所谓「异步 IO」,就是你发起一个 IO 操作,却不用等它结束,你可以继续做其他事情,当它结束时,你会得到通知。 Asyncio 是并发(concurrency)的一种方式。对 Python 来说,并发还可以通过线程(th 阅读全文
摘要:
![](https://images2018.cnblogs.com/blog/1239321/201808/1239321-20180808065117364-1539273796.png) ![](https://images2018.cnblogs.com/blog/1239321/201808/1239321-20180808065129112-103367989.png) ![](h... 阅读全文
摘要:
tqdm """ 【tqdm】 显示循环的进度条,再也不用担心程序跑到哪里还要跑多久了 tqdm 可以直接包裹iterable对象 from tqdm import tqdm,trange from time import sleep text = "" for char in tqdm(['a', 阅读全文
摘要:
# 例子 import asyncio @asyncio.coroutine def wget(host): print ('wget %s....' % host) connect = asyncio.open_connection(host,80) reader,writer = yield f 阅读全文
摘要:
#【【数据库】】'''MySQL是Web世界中使用最广泛的数据库服务器。SQLite的特点是轻量级、可嵌入,但不能承受高并发访问,适合桌面和移动应用。而MySQL是为服务器端设计的数据库,能承受高并发访问,同时占用的内存也远远大于SQLite。此外,MySQL内部有多种数据库引擎,最常用的引擎是支持 阅读全文