本月博客排行
-
第1名
龙儿筝 -
第2名
johnsmith9th -
第3名
wy_19921005 - zysnba
- sgqt
- lemonhandsome
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- lzyfn123
- zhanjia
- johnsmith9th
- forestqqqq
- ajinn
- nychen2000
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
Mongodb索引管理
MongoDB 中的索引包含一下几类
唯一索引
松散索引(只会让指定字段不为空的行参与到索引创建中来)
多值索引(对一个array类型创建索引)
复合索引(如果想用到复合索引,必须在查询条件中包含复合索引中的前N个索引列。然而如果查询条件中的键值顺序和复合索引中的创建顺序不一致的话,MongoDB可以智能的帮助我们调整该顺序,以便使复合索引可以为查询所用)
创建索引命令:
db.test.ensu ...
mongodb 使用索引优化查询
数据库 > tmp
集合 > app_down
> use tmp
switched to db tmp
R:使用tmp数据库
> db.createCollection("app_down");
{ "ok" : 1 }
R:创建集合
> db.app_down.save({"ap ...
tomcat index.jsp
以前一直在用tomcat,很多东西见怪不怪了。今日看到一个项目,挺复杂的。各种fitlter和selevlet在web.xml里面启动加载。无意间注意到web.xml里面没有配置<welcome-file>index.jsp</welcome-file>。平时项目都会默认有一个配置的。便寻思tomcat是如何找到入口的。网上找了很多都是怎么改默认页面,经过自己的猜想+验证得 ...
lucene 4.6 之indexing 之 IndexChain,索引数据结构
/*
This is the current indexing chain:
DocConsumer / DocConsumerPerThread
--> code: DocFieldProcessor
--> DocFieldConsumer / DocFieldConsumerPerField
...
能使 Oracle 索引失效的七大限制条件
文章出自:http://tech.it168.com/a2013/0929/1540/000001540460.shtml
Oracle 索引的目标是避免全表扫描,提高查询效率,但有些时候却适得其反。例如一张表中有上百万条数据,对某个字段加了索引,但是查询时性能并没有什么提高,这可能是 oracle 索引失效造成的。oracle 索引有一些限制条件,如果你违反了这 ...
提高elasticsearch索引速度
提高索引性能和速度从几下方面着手:
1. 增大索引实时时间设置:index.engine.robin.refresh_interval :10s (默认为1s)
2. 增大内存缓冲区: indices.memory.index_buffer_size:20% (默认为heap大小的10%)
3. 增加translog方面的设置: index.translog.flush_thresh ...
Elasticsearch store属性理解
在Elasticsearch创建mapping的时候,需要制定store属性和index属性,对于刚入门es的学者,通常对lucene又不熟悉的人,通常不知道如何设置这两个值。
先来看需求:
在做搜索时,经常会需要对一个分类进行分组,比如搜索"ipad",需要在平板电脑分类下面统计有多少个商品,在电脑配件下面统计有多少个商品,这种统计数量的需求,我们通常会在docu ...
HIVE 第七章 索引
索引
创建索引
create index employees_index
on table employees(country)
as 'bitmap' #使用bitmap函数建立索引
with deferred rebuild
idxproperties('creator'='dirk','created_at'='some_time')
i ...
Rails3: two ways to add index to db table
there is two ways to add index to db table
1. references
if we have two tables , article and commens, the association is 1:M , in order to make search data fast , we should add index to the db table, ...
oracle复合索引介绍(多字段索引)
oracle普通索引介绍(单字段索引) : http://ysj5125094.iteye.com/blog/1745354
首先,在大多数情况下,复合索引比单字段索引好.以税务系统的SB_ZSXX(申报 ...