ElasticSearch查询功能包括query和filter,使用RestAPI:_search方法进行查询。 Search 参数 l?Timeout:超时时间 l?From:等于offset l?Size:返回长度。 l?Search_type:查询类型。 l?Query_cache:1.4之后...
分类:
其他好文 时间:
2014-12-30 13:42:46
阅读次数:
214
latch:library cache --desc v$librarycache;latch:library cache用于保护hash bucket.library cache lock保护HANDLE。library cache pin保护library cache object--LCO.从...
分类:
系统相关 时间:
2014-12-30 11:36:42
阅读次数:
215
分为2大类,一种是时间可控的移动,暂且叫平滑移动,另一种则是瞬间移动了。
1.通过直接更改view的left,top,right,bottom的方法(瞬间移动)
layout(r,t,r,b);
offsetLeftAndRight(offset);
offsetTopAndBottom(offset);
2.scroll方法(瞬间移动)
scrollTo(x,y);...
分类:
移动开发 时间:
2014-12-29 16:55:28
阅读次数:
139
ns2--tcp-full.cc 1 /* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */ 2 3 /* 4 * Copyright (c) Intel Corporation 2...
分类:
其他好文 时间:
2014-12-29 10:11:33
阅读次数:
567
由于shared pool中最重要的是library cache,所以本文主要讲解Library cache的结构,library cache latch,library cache lock,library cache pin。
What is shared pool?
Shared pool是SGA中的一部分,由于它是SGA的一部分,这意味着它可以被所有的进程所访问,Share...
分类:
其他好文 时间:
2014-12-28 20:54:23
阅读次数:
188
1 assume cs:code 2 3 code segment 4 start: 5 mov ax,code 6 mov ds,ax 7 mov si,offset do0 8 mov ax,0 9 mov es...
分类:
编程语言 时间:
2014-12-26 21:36:36
阅读次数:
287
理论就不讲了,我感觉只有亲自敲代码,才能感觉到代码的神奇。代码:#!/usr/pin/envpythondefdisplayNumType(num):printnum,‘is‘,ifisinstance(num,(int,long,float,complex)):print‘anumberoftype:‘,type(num).__name__else:print‘notanumberatall!‘displayNumType(68)display..
分类:
编程语言 时间:
2014-12-26 18:54:26
阅读次数:
242
一直以来,都对JS获取元素的位置感到非常的困惑:一会client、一会offset、一会scroll。再加上各大浏览器之间的不兼容,唉,搞得哥晕晕乎乎的。而很多页面效果都要用到这些位置。不得已,得练练,得记记。下面就来说说这个基于 JQuery的简易拖拽插件吧。 按惯例,先说说拖拽的原理,以及搞这么...
分类:
Web程序 时间:
2014-12-25 20:03:30
阅读次数:
223
jQuery中有两个获取元素位置的方法offset()和position(),两者的定义如下:offset():获取匹配元素在当前视口的相对偏移。返回的对象包含两个整形属性:top 和 left。此方法只对可见元素有效。第二种用法:offset( coordinates )让我们重新设置元素的位置这...
分类:
其他好文 时间:
2014-12-25 18:05:34
阅读次数:
111
Filter是Directshow中最基本的概念。Directshow使用filter graph来管理filter。filter graph是filter的容器。
Filter一般由一个或者几个Pin组成。filter之间通过Pin来连接,组成一条链。
PIN也是一种COM组件,每一个PIN都实现了IPin接口。
试图链接的两个Pin必须在一个filter graph中。
连接过...
分类:
其他好文 时间:
2014-12-25 16:33:48
阅读次数:
221