- 浏览: 10439 次
- 性别:
- 来自: 杭州
最新评论
-
hufuli:
你用IK和solr结合应该就没有这个问题,估计是生成索引的时候 ...
IKanalyzer3.2的问题
文章列表
不知道有没有人碰到同样的话,使用自动完成时候出现提示框的延迟比较大
/**
$.ajax({
type: "POST",
contentType: "application/json",
url: "search.do?action=s&q="+$("#sotext").val(),
data: {},
dataType: "json",
...
var array = document.getElementsByName('INDEXID');
var indexIdObj = array[0];
var text = indexIdObj.options[indexIdObj.selectedIndex].text;
var value = indexIdObj.options[indexIdObj.selectedIndex].value;
var array1 = document.getElementsByName('INDEXNAME');
if(value==""){
array1 ...
oracle数据库解锁
- 博客分类:
- Oracle
SELECT /*+ rule */ s.username,decode(l.type,'TM','TABLE LOCK','TX','ROW LOCK',NULL) LOCK_LEVEL,o.owner,o.object_name,o.object_type,s.sid,s.serial#,s.terminal,s.machine,s.program,s.osuserFROM v$session s,v$lock l,dba_objects oWHERE l.sid = s.sidAND l.id1 = o.object_id(+)AND s.username is NOT Null
...
DIV模拟的select下拉框
- 博客分类:
- JAVASCRIPT
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gbk" />&l ...
日期选择
- 博客分类:
- JAVASCRIPT
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<script>
document.write("<div align='center' id=meizzCalendarLayer style='BORDER-RIGHT: #000000 1px solid; PADD ...
JS获取对象在窗口中的位置
- 博客分类:
- JAVASCRIPT
//JS得到对象在页面中离左边的绝对位置function getAbsoluteLeft(ob){ if(!ob){return null;} var mendingOb = ob; var mendingLeft = mendingOb .offsetLeft; while( mendingOb != null && mendingOb .offsetParent != null && mendingOb .offsetParent.tagName != "BODY" ){ mendingLeft += mendingOb .of ...
IKanalyzer3.2的问题
- 博客分类:
- Lucene
使用IKanalyzer3.2+lucene3.0搜索一个文本内容,结果只能出现一条,其实能匹配很多条,下面是源代码:
package com.lucene.demo;
import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.IOException;import java.io.InputStream;import java.io.StringReader;import java.util.Date;import org.apache.l ...
Quartz的cron表达式
- 博客分类:
- Quartz
一个cron表达式有至少6个(也可能7个)有空格分隔的时间元素。
按顺序依次为
秒(0~59)
分钟(0~59)
小时(0~23)
天(月)(0~31,但是你需要考虑你月的天数)
月(0~11)
天(星期)(1~7 1=SUN 或 SUN,MON,TUE,WED,THU,FRI,SAT)
7.年份(1970-2099)其中每个元素可以是一个值(如6),一个连续区间(9-12),一个间隔时间(8-18/4)(/表示每隔4小时),一个列表(1,3,5),通配符。由于"月份中的日期"和"星期中的日期"这两个元素互斥的,必须要 ...
You can install Apache as a Windows NT service as follows from the command prompt at the Apache bin subdirectory:
httpd -k install
If you need to specify the name of the service you want to install, use the following command. You have to do this if you have several different service installations ...