我有一个 mongo 集合,用于存储多种语言的城市/国家数据。例如,以下查询:
db.cities_database.find({ "name.pl.country": "Węgry" }).pretty().limit(10);
返回以下格式的数据:
[
{
_id: ObjectId('67331d2a9566994a18c505aa'),
geoname_id_city: 714073,
latitude: 46.91667,
longitude: 21.26667,
geohash: 'u2r4guvvmm4m',
country_code: 'HU',
population: 7494,
estimated_radius: 400,
feature_code: 'PPL',
name: {
pl: { city: 'Veszto', admin1: null, country: 'Węgry' },
ascii: { city: 'veszto', admin1: null, country: null },
lt: { city: 'Veszto', admin1: null, country: 'Vengrija' },
ru: { city: 'Veszto', admin1: null, country: 'Венгрия' },
hu: { city: 'Veszto', admin1: null, country: 'Magyarország' },
en: { city: 'Veszto', admin1: null, country: 'Hungary' },
fr: { city: 'Veszto', admin1: null, country: 'Hongrie' }
}
}
...
]
我希望能够在使用纯英语字符时使用相同的查询,因此对于这个例子,我想通过"name.pl.country": "Wegry"
(而不是字符,ę
我希望 Mongo 在执行这个查询时将其视为e
)进行查询。
有可能实现吗?
到目前为止,我尝试使用如下排序规则:
db.cities_database.find({ "name.pl.country": "Wegry" }).collation({ locale: "pl", strength: 1 }).pretty().limit(10);
但该查询没有返回任何内容。