6 Python和Nginx
6.1 介绍FastCGI
FastCGI(Fast Common Gateway Interface)是基于CGI上的改进,是CGI的一种演变产物。尽管目的是保持相同的,FastCGI在CGI上提供了重大的提升,通过建立起下面的原则。
l 代替对于每个请求孵化一个新进程,FastCGI采用持久化进程,伴随着能够处理多个请求的能力。...
分类:
编程语言 时间:
2014-06-26 12:06:54
阅读次数:
242
package com.jframe.kit;
import net.sourceforge.pinyin4j.PinyinHelper;
import net.sourceforge.pinyin4j.format.HanyuPinyinCaseType;
import net.sourceforge.pinyin4j.format.HanyuPinyinOutputFormat;
im...
分类:
编程语言 时间:
2014-06-26 12:10:42
阅读次数:
297
BUG 1:GDI+ Image::FromFile 无效
m_pImg = Gdiplus::Bitmap::FromFile(m_imgFilePath);
m_pImg为NULL
原因是没有初始化GDI+。
BUG2:GDI+ new Bitmap不能接受三个参数
//创建目标Bitmap
Bitmap *bmpDest = new Bitmap(destWidth, destHeight, m_pImg->GetPixelFormat());
原因:
//#ifdef _DEBUG
//#...
分类:
其他好文 时间:
2014-06-26 11:59:26
阅读次数:
377
不跳转是因为没有设置为调试模式,如下设置就能搞定
调试模式当然是根据情况而定,效果如下,搞定,不过当然必须有main函数的定义...
分类:
其他好文 时间:
2014-06-26 11:46:33
阅读次数:
1492
private boolean writeToSDCard(Throwable ex)
{
boolean isDealing = false;
if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED))
{
RandomAccessFile randomAccessFile = n...
分类:
移动开发 时间:
2014-06-26 11:58:42
阅读次数:
243
有时候开发的时候需要用一个进度条告知用户目前正在运行一个耗时操作,但是并不需要明确知道某个value来setProgress,所以就可以自定义一个时间和进度让进度条自动运行了。
下面是代码: Handler mHandler=new Handler(){
@Override
public void handleMessage(Message msg) {...
分类:
其他好文 时间:
2014-06-26 12:13:50
阅读次数:
289
java调用淘宝api 代码下载地址:http://www.zuidaima.com/share/1550463234034688.htm...
分类:
编程语言 时间:
2014-06-26 11:37:15
阅读次数:
232
#include
#include
#include
#include
#include
int main( void )
{
int signo;
pid_t pid;
if( (pid=fork())
{
fprintf(stderr, "main 1 fork err!\n");
ret...
分类:
其他好文 时间:
2014-06-26 11:45:48
阅读次数:
212
前端部署ant+yuicompressor文件压缩+获取版本号+SSH发布(部分代码),部署方便了!...
分类:
其他好文 时间:
2014-06-26 11:53:22
阅读次数:
219
ubuntu不能更新SDK或更新很慢解决办法...
分类:
其他好文 时间:
2014-06-26 11:36:30
阅读次数:
174
# Sample ``local.conf`` for user-configurable variables in ``stack.sh``
# NOTE: Copy this file to the root ``devstack`` directory for it to
# work properly.
# ``local.conf`` is a user-maintained set...
分类:
其他好文 时间:
2014-06-26 11:41:09
阅读次数:
272
Selenium Grid Configuration
1. Start Selenium Hub
java -jar selenium-server-standalone-2..jar
-role hub
2. Start Selenium Node
Start with Node contains Selenium RC...
分类:
其他好文 时间:
2014-06-26 11:52:37
阅读次数:
433
在Objective-C中,可以使用#import和@class来引用别的类型, 但是你知道两者有什么区别吗?
@class叫做forward-class, 你经常会在头文件的定义中看到通过@class的引用, 原因就是当你只用@class来引入一个类时, 编译器知道有这么一个类,也就是说它能识别Engine *engine;
而在implementation文件中,如果你想要访问e...
分类:
其他好文 时间:
2014-06-26 12:09:21
阅读次数:
220
在4.2.2版本上调用系统的DatePickerDialog,发现点击确定时系统调用onDateSet()两次,需要过滤其中的一次。
Calendar mCalendar = Calendar.getInstance();
mCalendar.add(Calendar.DAY_OF_YEAR, 1);
final DatePickerDialog dateDialog = new D...
分类:
移动开发 时间:
2014-06-26 11:30:26
阅读次数:
233
??
一、ORACLE 物理体系结构
原理结构图
各部分解释:
PGA: 私有内存区,仅供当前发起用户使用。
三个作用
用户登录后的session信息会保存在PGA。
执行排序,如果内存不够,oracle会在临时表空间中完成
保存用户权限信息
SGA: 包含共享池,数据缓冲区,日志缓冲区以及一些相关的进程。
DATABASE:...
分类:
数据库 时间:
2014-06-26 11:51:53
阅读次数:
272