摘要: 在生产上部署Django Django的部署可以有很多方式,采用nginx+uwsgi的方式是其中比较常见的一种方式。 uwsgi介绍 uWSGI是一个Web服务器,它实现了WSGI协议、uwsgi、http等协议。Nginx中HttpUwsgiModule的作用是与uWSGI服务器进行交换。 要注 阅读全文
posted @ 2018-05-28 21:31 Charonnnnn 阅读(277) 评论(0) 推荐(0) 编辑
摘要: WSGI协议 首先弄清下面几个概念:WSGI:全称是Web Server Gateway Interface,WSGI不是服务器,python模块,框架,API或者任何软件,只是一种规范,描述web server如何与web application通信的规范。server和application的规 阅读全文
posted @ 2018-05-27 23:13 Charonnnnn 阅读(744) 评论(0) 推荐(0) 编辑
摘要: Web服务器 - apache & nginx & tomact HTTP Server本质上来说都是这样几件事: 监听端口 接收(accept)socket连接 解析HTTP请求 使用通用或专用协议对请求进行分发 接收分发的请求产生的运行结果 将结果格式化成HTTP Response并写到sock 阅读全文
posted @ 2018-05-27 12:40 Charonnnnn 阅读(199) 评论(0) 推荐(0) 编辑
摘要: Query Optimization 阅读全文
posted @ 2018-05-09 11:29 Charonnnnn 阅读(148) 评论(0) 推荐(0) 编辑
摘要: Integrity Constraints Motivation To ensure that changes (made by authorized users) to the database do not cause a loss of consistency Constraints are  阅读全文
posted @ 2018-05-09 11:28 Charonnnnn 阅读(340) 评论(0) 推荐(0) 编辑
摘要: File Organization and Indexing Disk Storage Devices Secondary storage device for high storage capacity and low cost. Data stored as magnetized areas o 阅读全文
posted @ 2018-05-09 11:28 Charonnnnn 阅读(252) 评论(0) 推荐(0) 编辑
摘要: Transactions and Concurrency Control 事务(Transactions) 根据维基百科的定义,一个数据库事务通常包含了一个序列的对数据库的读/写操作。它的存在包含有以下两个目的:1)为数据库操作序列提供了一个从失败中恢复到正常状态的方法,同时提供了数据库即使在异常状 阅读全文
posted @ 2018-05-09 11:24 Charonnnnn 阅读(164) 评论(0) 推荐(0) 编辑
摘要: Ethics - Ethical Considerarions 'The Power of Creation and Destruction' Ask yourself : Purpose(目的): What is the objective for which you are striving? 阅读全文
posted @ 2018-05-05 18:02 Charonnnnn 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 几种APP开发模式 概述 当前的APP开发模式注意有以下四大类型: Native App 即传统的原生APP开发模式,Android基于Java语言,底层调用Google的 API;iOS基于OC或者Swift语言,底层调用App官方提供的API。体验最好。 Web App 即移动端的网站,将页面部 阅读全文
posted @ 2018-04-21 11:11 Charonnnnn 阅读(286) 评论(0) 推荐(0) 编辑
摘要: Input/Output Streams Stream: an object that either delivers data to its destination (screen, file, etc.) or that takes data from a source (keyboard, f 阅读全文
posted @ 2018-04-16 00:24 Charonnnnn 阅读(378) 评论(0) 推荐(0) 编辑