如何使用" - "搜索前缀在aws结构化查询中

时间:2015-12-28 12:19:36

标签: asp.net-mvc-4 amazon-web-services amazon-s3

我正在使用亚马逊云搜索API。我正在使用"前缀"搜索运算符,它在某种程度上正常工作。

工作副本:

AWSURL/search?q=
(and    
    (and searchtype:'Event' server:1 ) 
    ( and 
        ( or eventownerid:70 eventcreatedbyuserid:70 ) 
    ) 
    (prefix 'event')
)&size=10&q.parser=structured

非工作/问题

AWSURL/search?q=
(and 
    (and searchtype:'Event' server:1 ) 
    ( and 
        ( or eventownerid:70 eventcreatedbyuserid:70 ) 
    ) 
    (prefix 'event-1')
)&size=10&q.parser=structured

当我通过" - "它停止给出结果。

我也尝试了url.Encoded用于特殊包机,但也没有运气。

  1. 怎么做才能包括" - "在前缀?
  2. 有什么方法可以搜索所有单词的任何部分 列的文档。例如,该字段包含文本"这是 GreatSearchTech",当我通过"搜索"如 搜索词/单词。 ?
  3. 提前谢谢你。

0 个答案:

没有答案