1. jstat -gc pid 可以显示gc的信息,查看gc的次数,及时间。 其中最后五项,分别是young gc的次数,young gc的时间,full gc的次数,full gc的时间,gc的总时间。 2.jstat -gccapacity pid 可以显示,VM内存中三代(young,ol....
分类:
Web程序 时间:
2014-07-29 16:43:02
阅读次数:
261
字符串相加的时候尽量使用:join ????在while True 循环的时候,尽量使用:while 1 ????字符串处理: ????????分组 str.split(‘key‘) ????????列表翻转:list.reverse()...
分类:
编程语言 时间:
2014-07-29 16:17:09
阅读次数:
176
Ruby
Create a Neo4j Graph Database Using the REST API
A CRM with Neo4j and REST
neo4j 是用Java实现的图形化的数据库,跟关系型数据库不同的是,Graph database更注重于关系查询。比如查询朋友的朋友的朋友的朋友的四层关系,用关系型数据库查询会使用大量的Join,会有性能问题,如果用Gr...
分类:
其他好文 时间:
2014-07-29 14:49:18
阅读次数:
303
PyGObject is a Python extension module that gives clean and consistent access to the entire GNOME software platform through the use of GObject Introspection. PyGObject provides full support of GObject Introspection and all of its features (callbacks, GVari...
分类:
编程语言 时间:
2014-07-29 13:04:47
阅读次数:
343
mportosdeffindExtension(path,el):if(os.path.exists(path)):try:items=os.listdir(path)foriteminitems:if(os.path.isfile(os.path.join(path,item))):print(i...
分类:
其他好文 时间:
2014-07-29 11:09:46
阅读次数:
244
线程的分离状态决定一个线程以什么样的方式来终止自 己。在默认情况下线程是非分离状态的,这种情况下,原有的线程等待创建的线程结束。只有当pthread_join()函数返回时,创建的线程才算终止, 才能释放自己占用的系统资源。而分离线程不是这样子的,它没有被其他的线程所等待,自己运行结束了,线程也就终...
分类:
其他好文 时间:
2014-07-29 11:00:17
阅读次数:
287
DescriptionThe Happy Desert is full of sands. There is only a kind of animal called camel living on the Happy Desert. ‘Cause they live here, they need...
分类:
其他好文 时间:
2014-07-28 23:44:04
阅读次数:
329
首页你要下载full版本的 而不是stander版本 你可以在ckeditor\samples\plugins\toolbar 目录下方找到官方说明 官方说明有2种方式1toolbar 2 toolbargroup 以下是我google翻译的 此示例演示页面编辑器加载满工具栏...
分类:
其他好文 时间:
2014-07-28 16:59:44
阅读次数:
401
开发说下面这个sql语句跑不出结果SELECT
t1.order_id,
t2.order_name,
t1.order_flow_no,
t1.order_type,
t1.agent_id,
t1.money,
t1.order_create_time
FROM(SELECTre.idASorder_id,
re.serialnumberASorder_flow_no,
re.moneyASmoney,
‘1‘ASorder_type,
re.agent_..
分类:
其他好文 时间:
2014-07-28 16:41:04
阅读次数:
333
sqlserver:where rownum between @pageSize*(@pageIndex-1)+1 and @pageIndex*@pageSizemysql:SELECT * FROM `content` AS t1 JOIN (SELECT id FROM `content` O...
分类:
数据库 时间:
2014-07-27 22:41:29
阅读次数:
244