SELECT?
????procpid,?
????start,?
????now()?-?start?AS?lap,?
????current_query?
FROM?
????(SELECT?
????????backendid,?
????????pg_stat_get_backend_p...
分类:
数据库 时间:
2014-08-14 21:12:49
阅读次数:
430
MySQL多字节字符集造成主从数据不一致问题来自江羽2013-04-27 16:03:56|分类:默认分类|举报|字号订阅转载:http://backend.blog.163.com/blog/static/20229412620133274030845/问题产生线上一直有个历史遗留问题,最近DBA...
分类:
数据库 时间:
2014-08-13 12:27:06
阅读次数:
314
最近要用到Django,换成mysql出现了以下问题:The database backend does not accept 0 as a value for AutoField解决方法:cd 到对应的目录sed -i.old 's|\(ForeignKey.*\)default=0|\1defa...
分类:
数据库 时间:
2014-08-08 11:51:35
阅读次数:
1491
#程序结构如下:app
routes.php
models
controllers
backend
IndexController.php
fontend
IndexController.php#后台IndexController.php<?phpnamespadceOrg\Controllers\BackEnd;
classIndexControllerextends\BaseController
{
}#前台IndexController.php<?phpnamespa..
分类:
其他好文 时间:
2014-08-07 07:27:00
阅读次数:
219
实现负载均衡varnish所支持的调度方式有以下几种:1.round-robin#加权轮询,因为每个backend都有它的权重2.random#随机3.dns#基于DNS名称解析之后进行调度例:定义多个backenddirectorNAMEscheduler{.retries=2;{.backend=b1;.weight=2;}.backend=b2;{.backend={.host=.port=.p..
分类:
其他好文 时间:
2014-07-26 03:17:48
阅读次数:
396
配置文件为.conf文件一、块配置项块配置项由一个块配置项名和一对大括号组成。具体如下:events{ ...}http{ upstream backend{ server 127.0.0.1:8080 } gzip on; server{ location /webstatic{...
分类:
其他好文 时间:
2014-07-09 19:22:28
阅读次数:
194
因为涉及到内外网的改造,所以狠多东西现在需要依赖于openresty来做总控实现。然后就碰见了一个比较难办的问题,即在upstream时候,如何获取实际处理请求的server地址。假设有如下upstream配置:upstream backend {server 127.0.0.1:88882serv...
分类:
其他好文 时间:
2014-07-09 15:40:34
阅读次数:
219
From gtk+-2.90.7 configure --help we can see:--with-gdktarget=[x11/win32/quartz] select non-default GDK targetThere is no directfb in the gdktarget as...
分类:
其他好文 时间:
2014-07-07 18:22:03
阅读次数:
235
查看所有postgre语句执行时间:select procpid, start, now() - start as lap, current_query from (select backendid, pg_stat_get_backend_pid(s.backendid) as procpid, ...
分类:
其他好文 时间:
2014-07-01 17:35:56
阅读次数:
810
From gtk+-2.10.2 configure --help we can see (I just only view the 2.10.2, not know other 2.10.x):--with-gdktarget=[x11/linux-fb/win32/quartz/directfb...
分类:
系统相关 时间:
2014-06-29 18:48:27
阅读次数:
430