码迷,mamicode.com
首页 >  
搜索关键字:memcached 、 session    ( 19920个结果
Rhythmk 学习 Hibernate 03 - Hibernate 之 延时加载 以及 ID 生成策略
Hibernate 加载数据 有get,跟Load 1、懒加载: 使用session.load(type,id)获取对象,并不读取数据库,只有在使用返回对象值才正真去查询数据库。@Test public void test1() { Session session = null;...
分类:系统相关   时间:2014-05-01 22:40:35    阅读次数:614
Rhythmk 学习 Hibernate 02 - Hibernate 之 瞬时状态 离线状态 持久化状态 三状态
by:rhythmk.cnblogs.com1、Hibernate 三种状态: 1.1、三种定义(个人理解,不一定准确): 瞬时状态(transient): 被session接管但不存在数据库中的对象状态 离线状态 (detached): 数据库中存在而不被session接管 ...
分类:系统相关   时间:2014-05-01 18:48:02    阅读次数:486
页面之间值传递常用的几种方式
1.使用QuerySting在页面间传递值 2.使用Session变量...
分类:其他好文   时间:2014-05-01 17:27:48    阅读次数:331
Memcached source code analysis (threading model)--reference
Look under the start memcahcedthreadingprocessmemcached multi-threaded mainly by instantiating multiple libevent, are a main thread and n workers thre...
分类:其他好文   时间:2014-05-01 06:15:27    阅读次数:356
Memcached source code analysis -- Analysis of change of state--reference
This article mainly introduces the process of Memcached, libevent structure of the main thread and worker thread based on the processing of the connec...
分类:其他好文   时间:2014-05-01 02:44:07    阅读次数:571
Java web Session 监听类。
public class SessionListener implements HttpSessionListener { static Logger log = Logger.getLogger( SessionListener.class.getName()); private static Map map = new HashMap(); ...
分类:编程语言   时间:2014-04-30 22:31:38    阅读次数:397
追踪sql会话 dbms_monitor
经常会遇到一个会话中存在sql性能问题,但无法定位哪一个sql导致DB性能问题较高,这是我们需要对这个session进行监控可以通过dbms_monitor包来实现。 首先确定要监控的会话sid及serial#,可以通过v$session视图获得 select sid, serial#, username from v$session  where ... 确定session...
分类:数据库   时间:2014-04-30 22:23:38    阅读次数:413
[NOSQL] Memcache入门
Memcache是临时性键值存储NoSQL数据库,过去被大量使用在互联网网站中,作为应用和数据库之间的缓存层(现已打都被Redis取代),它是由Danga Interactive公司开发,最初为了加速LiveJournal 访问速度而开发,后来成为广泛应用的开源项目,官网: http://memcached.org/ Memcache的特点 全内存运转 哈希方式存储 简单文本协议进...
分类:数据库   时间:2014-04-29 13:47:20    阅读次数:444
org.hibernate.HibernateException: No Hibernate Session bound to thread, and configuration does not
org.hibernate.HibernateException: No Hibernate Session bound to thread, and configuration does not...
分类:系统相关   时间:2014-04-29 13:15:20    阅读次数:411
heat笔记之为diskimage-builder编写elements生成一个lamp镜像
建立elements目录 mkdir -p elements/lamp/install.d/ vim 70-lamp #!/bin/bash set -eux install-packages wordpress mariadb-server httpd memcached 生成一个带wordpress的镜像 export ELEMENTS_PATH=...
分类:其他好文   时间:2014-04-29 13:14:21    阅读次数:475
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!