- 浏览: 8404 次
- 性别:
- 来自: 南京
最新评论
文章列表
最近在学习Solr,借这个机会丰富一下自己空荡荡的博客,同时也加深一下自己记忆。还有特别提示各位读者,本人也是刚刚接触Solr,对其了解并不深入,有说的不对或错误的地方,望各位多多指点。
在搭建Solr搜索服务之前,先来了解两个问题。
什么是Solr?
Solr能做什么?
什么是Solr
Solr是一个基于Lucene实现的全文搜索服务器。底层使用易于扩展和修改的Java 来实现。服务器通信使用标准的HTTP 和XML,所以如果使用Solr 了解Java 技术会有用却不是必须的要求。
Solr 主要特性有:
强大的全文检索功能,
高亮显示检索结果,
动态集群,
数据库接口和电子文档 ...
cronExpression配置说明
- 博客分类:
- Cron表达式
cronexpression_r配置说明
字段 允许值 允许的特殊字符
秒 0-59 , - * /
分 0-59 , - * /
小时 0-23 , - * /
日期 1-31 , - * ? / L W C
月份 1-12 或者 JAN-DEC , - * /
...
解决办法:
可以通过resin.exe的参数install和remove完成,例如:
dos:\> ${resin_home}\resin.exe -install
dos:\> ${resin_home}\resin.exe -remove
另外,安装时可以指定服务名,用以标明服务对应哪些应用application,例如:
dos:\> ${resin_home}\resin.exe -install-as
dos:\> ${resin_home}\resin.exe -remove-as
dos:\> ${resin_home}\resin.e ...
引用It is not about field type "text". It is about field named "text".
You've changed the default field in config to "search_text". Please try renaming all references to "search_text" to "text". If this fixes the issue, then you know somewhere in the c ...
Solr在Resin中运行
- 博客分类:
- Exception
503 Server is shutting down
Using log4j with Solr from source, 4.2.1 or earlier
Prior to Solr4.3, using a different SLF4J binding (such as log4j) meant either repackaging the war file or building it yourself from source. To build it yourself, you need to obtain a nightly version or get it from svn. ...
Solr开发环境在Resin 与 Tomcat
- 博客分类:
- Solr
resin.conf 文件中添加两个web-app元素(添加到<host id="" root-directory=".">节点中)。
<web-app id="/solr1" document-directory="webapps/solr1" archive-path="/path/to/solr.war" character-encoding="utf-8">
<env-entry>
<env-entry- ...
Exception: java.lang.UnsatisfiedLinkError: no JMagick in java.library.path
Jmagick的安装(基于windows),精简版步骤:
1、下载jmagick-win-5.5.7-Q8.zip,并把jmagick.jar放到应用的lib下,jmagick.dll拷贝到SYSTEM32下;
2、安装ImageMagick-5.5.7-Q8-windows-dll.exe软件
3、重新启动机器
麻烦点,但对图片的处理能力,确实超乎想象的(不过用6.2.6版本频频出现JVM Crach,吓死)
jmagick的使用,我只用了 ...
在使用Hibernate3.5.1/3.6等版本的注解功能时出现错误:java.lang.NoSuchMethodError:javax.persistence.OneToMany.orphanRemoval()Z
关键的原因是:
1、引用的库文件存在版本冲突,很可能是因为javaee.jar中的部分类与hibernate-jpa-2.0-api-1.0.0.Final.jar存在版本冲突
解决办法:删除对Java EE 5 Libraries的使用,如果这个办法用了还是照旧产生这个问题的话..那就是引入的包里得部分类也存在版本冲突,很可能是ejb3-persistence.jar,把它删除. ...