`
文章列表
初学solr在schema 里面配置并使用sorl的date或者tdate类型,具体类型与使用如下: Java代码   <field name="tdate_field" type="tdate" indexed="true" stored="true" />           <field name="date_field" type="date" indexed="true" stored="t ...
solr.LRUCache:最久未使用算法,使用时间距离现在最久的那个被移除;(LRU关键是看页面最后一次被使用到发生调度的时间长短) solr.FastLRUCache   solr.LFUCache:最近最少使用算法,一定时间段内使用次数(频率)最少的那个被移除;(而LFU关键是看一定时间段内页面被使用的频率)  
一、jar包 bonecp-0.8.1-20131105.191813-1.jar bonecp-spring-0.8.0.RELEASE.jar mysql-connector-java-5.1.16.jar   二、Spring 配置 <bean id=“datasource" class="com.jolbox.bonecp.BoneCPDataSource" destroy-method="close"> <property name="driverClass" value=" ...

Luhn算法

什么是Luhn算法? Wiki上得标准定义:http://en.wikipedia.org/wiki/Luhn_algorithm Luhn算法最常用的领域是信用卡号码的有效性验证,VISA和MasterCard等巨头都使用了该算法。 Luhn算法的基本原理非常简单:(eg:49927398716) 第一步:把信用卡号倒序(61789372994) 第二步:取出倒序后的奇数位置上的号码, 相加等到总和s1(s1=6+7+9+7+9+4=42) 第三步:取出倒序后的偶数位置上的号码,每个号码乘以2. (eg:2,16,6,4,18) 第四步:把第三步得到的大于10的号码转化为个位+十位。(eg:2 ...

tomcat 下多core配置

    博客分类:
  • Solr
1、在tomcat/conf/Catalina/localhost 下添加配置文件,one.xml 、other.xml   2、配置文件指明 solr应用路径和solr-home路径 one.xml <?xml version="1.0" encoding="UTF-8"?> <Context docBase="/solr" debug="0" crossContext="true" >             <Environment name=&q ...

SolrConfig.xml 说明

    博客分类:
  • Solr
<?xml version="1.0" encoding="UTF-8" ?> <config> <!-- 当配置文件出错时退出 --> <abortOnConfigurationError>${solr.abortOnConfigurationError:true}</abortOnConfigurationError>   <luceneMatchVersion>4.5</luceneMatchVersion>   <directoryFactor ...
1、solr.xml 配置说明 https://cwiki.apache.org/confluence/display/solr/Moving+to+the+New+solr.xml+Format   2、solr.xml 及core.properties 配置说明 https://cwiki.apache.org/confluence/display/solr/Format+of+solr.xml   3、SolrClound 官方说明(原Wiki的最新说明) https://cwiki.apache.org/confluence/display/solr/SolrCloud ...
最近通过多方面搜索,发现SolrClound 依赖 Solr.xml 越来越小了。 自己小记一下这几天的发现: 1、启动参数-Dbootstrap_conf=true 配置,可以使用自己core中的配置文件 2、core.properties 的配置 numShards=3#shard数 name=core_words#名称(即collection名称) schema=schema.xml loadOnStartup=true transient=false collection=core_words shard=shard1 3、一个 solr-home 多core配置 ...
  IBM JDK SHA1PRNG 算法比  IBMSecureRandom 慢    java.security.SecureRandom random = java.security.SecureRandom.getInstance("SHA1PRNG"); 换成  java.security.SecureRandom random = java.security.SecureRandom.getInstance("IBMSecureRandom"); 
在winodows7上使用eclipse时,需要通过IP远程连接如数据库等,此时有可能会出现将IP转为ipv6的格式。   所以在启动参数上加如下代码可以自动将ipv6地址更改为ipv4:   -Djava.net.preferIPv4Stack=true
  出现此错误,是由于没有网络访问的权限导致。可能出现错误的原因: 1、  登录网上邻居时的用户名密码没有保存正确。 2、VSS客户端的用户名密码不正确。 解决方法 1、  删除网上邻居用户名历史记录。 开始----运行----输入control keymgr.dll
Global site tag (gtag.js) - Google Analytics