Fork me on GitHub
摘要: mysql数据库开发中的实际问题以及解决思路 关于单表查询的数据库优化 数据库查询优化 1、选取最适用的字段属性 MySQL可以很好的支持大数据量的存取,但是一般说来,数据库中的表越小,在它上面执行的查询也就会越快。因此,在创建表的时候,为了获得更好的性能,我们可以将表中字段的宽度设得尽可能小。 例 阅读全文
posted @ 2018-08-22 20:11 道阻切长 阅读(1634) 评论(0) 推荐(0) 编辑
摘要: 字符串格式化一般使用: 那么python 3.6以后新加的一个功能就是: 下面看下 f-strings 的使用方法 1.基本使用: 2.运算表达式 >>> f"{ 2 * 3 + 1}" '7' 3.调用函数 >>> def test(input): ... return input.lower() 阅读全文
posted @ 2018-08-22 15:57 道阻切长 阅读(373) 评论(0) 推荐(0) 编辑
摘要: 准备工作: ① 多人匿名聊天室: from flask import Flask, request,render_template from geventwebsocket.websocket import WebSocket from geventwebsocket.handler import 阅读全文
posted @ 2018-08-22 08:31 道阻切长 阅读(106) 评论(0) 推荐(0) 编辑