##分布式系统(Distributed System)资料
介绍:这是一篇介绍在动态网络里面实现分布式系统重构的paper.论文的作者(导师)是MIT读博的时候是做分布式系统的研究的,现在在NUS带学生,不仅仅是分布式系统,还有无线网络.如果感兴趣可以去他的主页了解.
##分布式系统(Distributed System)资料
介绍:这是一篇介绍在动态网络里面实现分布式系统重构的paper.论文的作者(导师)是MIT读博的时候是做分布式系统的研究的,现在在NUS带学生,不仅仅是分布式系统,还有无线网络.如果感兴趣可以去他的主页了解.
| package main | |
| import ( | |
| "crypto" | |
| "crypto/rand" | |
| "crypto/rsa" | |
| "crypto/sha256" | |
| "crypto/x509" | |
| "encoding/base64" | |
| "encoding/pem" |
| # -*- coding: utf-8 -*- | |
| # 14-8-20 | |
| # create by: snower | |
| import os | |
| import time | |
| import multiprocessing | |
| from logging.handlers import RotatingFileHandler, TimedRotatingFileHandler | |
| class RotatingFileHandler(RotatingFileHandler): |
| # Torndb is a very thin wrapper around MySQLdb that makes it even easier to use MySQL. | |
| # Because it is very light, one can just go through the one-file python source | |
| # to learn how to use it. | |
| # Installation: pip install torndb | |
| # Official doc: http://torndb.readthedocs.org/en/latest/ | |
| # Source: https://github.com/bdarnell/torndb/blob/master/torndb.py | |
| from torndb import Connection |
| # sudo ln -s ~/nginx.conf unicorn.conf | |
| upstream app_server { | |
| server unix:/tmp/unicorn_padrino.sock fail_timeout=0; | |
| } | |
| server { | |
| listen 80; | |
| charset utf-8; | |
| server_name db.innshine.com; |