我正在使用圣杯searchable plugin(0.6.4)
。我需要根据隐私设置搜索会员。以下是数据库设计。
会员有MemberProfile, and MemberProfile has PrivacySettings
class Member extends {
String firstName
String lastName
static searchable = {
analyzer "simple"
only = ['firstName', 'lastName']
firstName boost: 5.0
profile component: true
profile reference: true
}
static hasOne = [profile: MemberProfile]
}
class MemberProfile {
static searchable = {
analyzer "simple"
only = ['currentCity', 'currentCountry']
privacySettings component: true
}
static hasMany = [privacySettings:PrivacySettings]
String currentCity
String currentCountry
List<PrivacySettings> privacySettings
}
//For instance Privacy Settings contains
//fieldSectionName: firstName , connectionLevel: true , memberLevel: false
// This means firstName will be shown to only members' friends(connection)
class PrivacySettings {
static searchable = {
analyzer "simple"
only = ['fieldSectionName', 'connectionLevel', 'memberLevel']
}
String fieldSectionName
boolean connectionLevel
boolean memberLevel
}
一个会员资料为每个字段提供了许多隐私设置。
查询将仅搜索隐私设置表中fieldsSectionName和connectionLevel中具有display_name的成员的查询。
我正在尝试这样的事情
def query="mydisplayname"
def searchResults = Member.search(query + "*" + " +(fieldSectionName:${'display_name'} AND connectionLevel:${true})", params)
答案 0 :(得分:0)
我不知道圣杯,但在Lucene中,布尔查询中的最大子句数默认为1024.
您可以增加此限制。
但是会有性能损失。或者您可以索引文档上的值并搜索它们(lucene将对具有相同名称的不同字段执行OR操作)。
您可以使用BooleanQuery类上的静态属性更改限制:
BooleanQuery.MaxClauseCount = 99999;
欧米
答案 1 :(得分:0)
我在grails应用程序中遇到了同样的问题,为了解决这个问题,将org.apache.lucene.search.BooleanQuery.maxClauseCount = 99999添加到config.groovy并重新启动应用程序