07 2013 档案

c++中左值的含义
摘要:>中的原文(Chapter 8 Adventures in Functions):What is an lvalue? An argument that’s an lvalue is a data object that can be referencedby address. For example, a variable, an array element, a structure member, a reference, anda dereferenced pointer are lvalues. Non-lvalues include literal constants (asi 阅读全文

posted @ 2013-07-28 16:07 argb 阅读(341) 评论(0) 推荐(0)

一直在用的一个javascript网站
摘要:http://www.dottoro.com/很不错,例子丰富,解释详细,全面;非常好的参考资料站。 阅读全文

posted @ 2013-07-23 19:55 argb 阅读(142) 评论(0) 推荐(0)

memcached 相关
摘要:今天用了下memcached,把一个日志分析结果的大数组缓存起来,由于实时性跟准确性要求不高,所以缓存一周;因为日志越来越多,不缓存的话每次查看页面会比较慢。(其实可以先离线定期计算好结果存起来)。以下是几点总结:1、注意搞清楚memcache 跟memcached这两个概念,都是memcached server的php扩展,两者有些细节上的区别。2、如果php要用的话,一个是装装好memcached服务器,一个是要装好对应的php扩展,推荐memcached3、一些memcached的监控状态说明(以下转自http://blog.csdn.net/chuan122345/article/de 阅读全文

posted @ 2013-07-23 15:52 argb 阅读(257) 评论(0) 推荐(0)

avl 平衡搜索二叉树的旋转图示
摘要:avl树的平衡是通过旋转不平衡子树完成的,旋转是如何完成的?这有幅不错的图http://upload.wikimedia.org/wikipedia/en/1/15/Tree_Rotations.gif 阅读全文

posted @ 2013-07-05 20:00 argb 阅读(309) 评论(0) 推荐(0)

导航