`
文章列表

Catalog

概念解析: 一:Catalog Catalog 是由相关的Repository Item 组成的。它形成或者组织用户进行定位或者购买的导航性质的架构。 我们也可以理解为它是一颗树的root(catalog).它可以包含Category. 引用的形式就是通过属性rootCategories.   二: Category Category 就是对Catalog 以树的形式进行组织。其中最高级别的Category就是Root Category. Root Category下面的
Endeca Analytics   Search and navigation 紧密集成; Rich analytical functionality:丰富的分析功能  
一:定义文件的相关tag和属性 Item-descriptor: 每一个Repository Item 类型都是在<item-descriptor> 下描述的。 Name:在整个定义文件中都是唯一的。 Cache-mode: Item-descriptor 级别默认就是simple .如果item某一个具体的属性不想使用cache。可以设置为
oracle start with connect by 用法   oracle中 connect by prior 递归算法 Oracle中start with...connect by prior子句用法 connect by 是结构化查询中用到的,其基本语法是: select ... from tablename start with 条件1 connect by 条件2 where 条件3; ...

Linux--vi

==================vi命令==================vi a.txt        用vi编辑器编辑a.txt,如果不存在则建立空文件,默认是一般模式;---a(光标后) i(光标前) r(替换光标字符) o(下一行) A(行尾) I(行首) R(同r) O(上一行)        都可从 一般模式 进入 编辑模式---Esc            可以从 编辑模式 进入 一般模式---:             从 一般模式 进入 命令模式,输入取消、保存等指令---/            从 一般模式 进入 命令模式,可以进行搜索;---wq        ...
package com.arithmetic.sort; /** * Shell Sort 其實是對Insert Sort的優化,因為當一個初始化的數組有序或者比較有序,且數據量 * 也不是太大的時候,可能沒啥大問題,當初始化的數組很大且雜亂無章,插入排序的時候,插入的次數就很多 * 這樣對效率也大打折扣。所以此時Shell Sort可以 是一組數組 接近有序,然後再進行插入排序,這樣的話 * 插入的次數就很少了 * @author Administrator * */ public class ShellSort { public static void ...
package com.arithmetic.sort; /** * 快速排序法: * 1 选择轴值 ,尽可能使得Left and Right 相等 * 策略: 选择最左边;随机选择;选择平均值 * * @author Administrator * */ public class QuickSort { public static void main(String[] args) { int [] arrays = new int[]{8,2,7,3,6,4,9,1,5,10}; quickSort(arrays, 0, arrays.le ...
Endeca Relevance Ranking(相关度排序) Relevance Ranking Module 详解 Exact:(精确匹配) 将整个结果进行一个分层,最高的层次,即最先呈现给用户的层次,是完全精确匹配term的,第二层是将term 拆分后匹配的层次,第三层就是其他命中的层次。 举个例子,比如现在sku.displayName这个property 有Nike Shoes, Nike XM Shoes,Nike-Shoes,"Nike Shoes"等,那么最高层会将Nike Shoes放在第一层,然后包含Nike 或者 Shoes放在第二个层次,然 ...
Endeca Search Charactors Processing Search Query 处理: 查询期间,用户的query term 被转换,去替代所有的非字母数字字符:   非字母数字字符:(! @ # & ( ) – [ { } ] : ; ', ? / *) 被视为标点,然后作为空格存在。比如搜索Nike-Shoes 等价 ...
Endeca Search Mode MathchAll: 当用户提供的search term 在 search key里都出现时候,才会得到该结果集,比如搜索Nike Shoes, Search key 是displayName.那么 不管是 displayName是包含 Nike Shoes,还是包含 Shoes Nike, 还是包含 Nike-Shoes 或者 NikeShoes 或者 “Nike Shoes”等,都会取出来。但是如果某一个产品的displayName只包含Nike,那么该记录不会取出来。   MatchPartial: 显而易见,这是只要你的字段某一部分包含, ...
Search Interface 一:概念 就是一些已经enable for record search 的 property or dimension 的命名集合。能够使得我们针对一个或者一些dimension or property 去搜索一些去控制record search的行为。   二:主要的功能 1 Relevance Ranking 2 Matching across multiple properties or dimension(cross-fields) 3 Keyword in context results 4 Partial Match   三:O ...
Error Type: Caused by java.lang.reflect.InvocationTargetException sun.reflect.NativeMethodAccessorImpl invoke0 - null Caused by com.endeca.soleng.eac.toolkit.exception.AppControlException com.endeca.soleng.eac.toolkit.script.Script runBeanShellScript - Error executing valid BeanShell script. Ca ...
MDEX 6.5 Installation: Before start to install, please check these utilities: bin     basename cat chgrp chown date dd df mkdir more rm sed tar true /usr/bin    awk cksum cut dirname expr gzip head id printf tail tr wc which   ./OCmdex6.5.1-Linux64_829811.sh --target /opt/(install dir ...
How works about the ATG Cache?     Item cache 会持有repository items, Repository query 会分为两个部分,使用两个单独的SELECT 查询语句。第一个SELECT 语句 去获取匹配查询的repository id, 然后SQL Repository去检测第一个查询出来的结果集,找到在缓存中的item,然后第二个查询去取出没有被缓存的items.   另外,关于查询缓存我们需要注意的是,他缓存的是repository id,而不是item。 第一次会从数据库查询,第二次根据缓存的id去 item cache ...
CentOS 7.0配置静态IP   重启服务 service network restart 关闭防火墙 查看防火墙状态 firewall-cmd --state#启动firewallsystemctl start firewalld.service#停止firewallsystemctl stop firewalld.service#禁止firewall开机启动systemctl disable firewalld.service 改成iptablessystemctl start iptables.service
Global site tag (gtag.js) - Google Analytics