一. redis
Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes
http...
分类:
其他好文 时间:
2014-07-24 10:32:58
阅读次数:
223
redis:真是千呼万唤始出来,终于有了redis gui 谢谢作者,但中文乱码问题貌似还没有解决呀!https://github.com/caoxinyu/RedisClientmongoDB:MongoVUE这个还是很完善的http://www.mongovue.com/
分类:
数据库 时间:
2014-07-23 20:19:15
阅读次数:
511
记录Windows安装php5,5 Redis扩展的错误 php_redis-5.5-vc11-ts-x86-00233a.zip?http://d-h.st/4A5 php_igbinary-5.5-vc11-ts-x86-c35d48.zip?http://d-h.st/QGH 将以上两个文件放到php下的ext文件夹后,修改p...
分类:
Web程序 时间:
2014-07-23 17:40:51
阅读次数:
306
问答社区网络 StackExchange 由 100 多个网站构成,其中包括了 Alexa 排名第 54 的 StackOverflow。StackExchang 有 400 万用户,每月 5.6 亿 PV,但只用 25 台服务器,并且 CPU 负荷并不高。 它没有使用云计算,因为云计算可能会拖慢....
分类:
其他好文 时间:
2014-07-23 15:37:19
阅读次数:
264
想必玩过mysql的人对Waiting for table metadata lock肯定不会陌生,一般都是进行alter操作时被堵住了,导致了我们在show processlist 时,看到线程的状态是在等metadata lock。本文会对mysql 的metadata lock做一个小小的总结...
分类:
数据库 时间:
2014-07-23 14:46:26
阅读次数:
211
1.互斥量(QMutex)
头文件声明: #include
互斥量声明: QMutex m_Mutex;
互斥量加锁: m_Mutex.lock();
互斥量解锁: m_Mutex.unlock();
2.等待条件(QWaitCondition)
头文件声明: #inc...
分类:
其他好文 时间:
2014-07-23 13:20:44
阅读次数:
489
官网FAQ里查到以下说明:“You may find that not all of these icons are used on your system. This is because the number of overlays allowed by Windows is limited.....
分类:
其他好文 时间:
2014-07-22 22:35:16
阅读次数:
600
package多线程;
importjava.util.concurrent.locks.Condition;
importjava.util.concurrent.locks.Lock;
importjava.util.concurrent.locks.ReentrantLock;
publicclassPandCnewLock{
publicstaticvoidmain(String[]args){
// Producerp=newProducer2();
// Consumerc=..
分类:
编程语言 时间:
2014-07-22 18:21:02
阅读次数:
288
mysql-uroot-e"showprocesslist"|grep-i"Locked">>locklist.txt;
forlineinawk‘{print$1}‘locklist.txt
do
echo"kill$line;">>lock_kill.sql
done查看mysql数据库表大小#!/bin/bash
database=cms
user=root
password=‘123456‘
mysql-u${user}-p${password}-e"use$d..
分类:
数据库 时间:
2014-07-22 18:15:42
阅读次数:
334
本篇介绍一些Spring与其他框架结合的实用功能,包括:Apache CXF WebService框架、Redis缓存、RabbitMQ消息、MyBatis框架。
另外对于Profile,也是Spring3.0开始新加的功能,对于开发测试环境、和生产环境分别采用不同的配置,有一定用处。...
分类:
编程语言 时间:
2014-07-22 14:10:04
阅读次数:
449