mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-01-31 15:31:53 +08:00
when no searchable attributes are defined, makes all the weight equals to zero
This commit is contained in:
parent
c78a2fa4f5
commit
f2d0a59f1d
@ -85,8 +85,8 @@ async fn simple_search() {
|
|||||||
)
|
)
|
||||||
.await;
|
.await;
|
||||||
snapshot!(code, @"200 OK");
|
snapshot!(code, @"200 OK");
|
||||||
snapshot!(response["hits"], @r###"[{"title":"Captain Planet","desc":"He's not part of the Marvel Cinematic Universe","id":"2","_vectors":{"default":[1.0,2.0]},"_rankingScore":0.996969696969697},{"title":"Captain Marvel","desc":"a Shazam ersatz","id":"3","_vectors":{"default":[2.0,3.0]},"_rankingScore":0.996969696969697},{"title":"Shazam!","desc":"a Captain Marvel ersatz","id":"1","_vectors":{"default":[1.0,3.0]},"_rankingScore":0.9472135901451112}]"###);
|
snapshot!(response["hits"], @r###"[{"title":"Captain Marvel","desc":"a Shazam ersatz","id":"3","_vectors":{"default":[2.0,3.0]},"_rankingScore":0.990290343761444},{"title":"Captain Planet","desc":"He's not part of the Marvel Cinematic Universe","id":"2","_vectors":{"default":[1.0,2.0]},"_rankingScore":0.9848484848484848},{"title":"Shazam!","desc":"a Captain Marvel ersatz","id":"1","_vectors":{"default":[1.0,3.0]},"_rankingScore":0.9472135901451112}]"###);
|
||||||
snapshot!(response["semanticHitCount"], @"1");
|
snapshot!(response["semanticHitCount"], @"2");
|
||||||
|
|
||||||
let (response, code) = index
|
let (response, code) = index
|
||||||
.search_post(
|
.search_post(
|
||||||
@ -331,7 +331,7 @@ async fn query_combination() {
|
|||||||
.await;
|
.await;
|
||||||
|
|
||||||
snapshot!(code, @"200 OK");
|
snapshot!(code, @"200 OK");
|
||||||
snapshot!(response["hits"], @r###"[{"title":"Captain Planet","desc":"He's not part of the Marvel Cinematic Universe","id":"2","_vectors":{"default":[1.0,2.0]},"_rankingScore":0.996969696969697},{"title":"Captain Marvel","desc":"a Shazam ersatz","id":"3","_vectors":{"default":[2.0,3.0]},"_rankingScore":0.996969696969697},{"title":"Shazam!","desc":"a Captain Marvel ersatz","id":"1","_vectors":{"default":[1.0,3.0]},"_rankingScore":0.8848484848484849}]"###);
|
snapshot!(response["hits"], @r###"[{"title":"Captain Planet","desc":"He's not part of the Marvel Cinematic Universe","id":"2","_vectors":{"default":[1.0,2.0]},"_rankingScore":0.9848484848484848},{"title":"Captain Marvel","desc":"a Shazam ersatz","id":"3","_vectors":{"default":[2.0,3.0]},"_rankingScore":0.9848484848484848},{"title":"Shazam!","desc":"a Captain Marvel ersatz","id":"1","_vectors":{"default":[1.0,3.0]},"_rankingScore":0.9242424242424242}]"###);
|
||||||
snapshot!(response["semanticHitCount"], @"null");
|
snapshot!(response["semanticHitCount"], @"null");
|
||||||
|
|
||||||
// query + vector, no hybrid keyword =>
|
// query + vector, no hybrid keyword =>
|
||||||
@ -374,6 +374,6 @@ async fn query_combination() {
|
|||||||
.await;
|
.await;
|
||||||
|
|
||||||
snapshot!(code, @"200 OK");
|
snapshot!(code, @"200 OK");
|
||||||
snapshot!(response["hits"], @r###"[{"title":"Captain Planet","desc":"He's not part of the Marvel Cinematic Universe","id":"2","_vectors":{"default":[1.0,2.0]},"_rankingScore":0.9848484848484848}]"###);
|
snapshot!(response["hits"], @r###"[{"title":"Captain Planet","desc":"He's not part of the Marvel Cinematic Universe","id":"2","_vectors":{"default":[1.0,2.0]},"_rankingScore":0.9242424242424242}]"###);
|
||||||
snapshot!(response["semanticHitCount"], @"0");
|
snapshot!(response["semanticHitCount"], @"0");
|
||||||
}
|
}
|
||||||
|
@ -921,7 +921,7 @@ async fn test_score_details() {
|
|||||||
"order": 3,
|
"order": 3,
|
||||||
"attributeRankingOrderScore": 1.0,
|
"attributeRankingOrderScore": 1.0,
|
||||||
"queryWordDistanceScore": 0.8095238095238095,
|
"queryWordDistanceScore": 0.8095238095238095,
|
||||||
"score": 0.9727891156462584
|
"score": 0.8095238095238095
|
||||||
},
|
},
|
||||||
"exactness": {
|
"exactness": {
|
||||||
"order": 4,
|
"order": 4,
|
||||||
|
@ -285,10 +285,10 @@ async fn attributes_ranking_rule_order() {
|
|||||||
@r###"
|
@r###"
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"id": "2"
|
"id": "1"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id": "1"
|
"id": "2"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
"###
|
"###
|
||||||
|
@ -21,9 +21,9 @@ impl FieldidsWeightsMap {
|
|||||||
|
|
||||||
/// Create the map from the fields ids maps.
|
/// Create the map from the fields ids maps.
|
||||||
/// Should only be called in the case there are NO searchable attributes.
|
/// Should only be called in the case there are NO searchable attributes.
|
||||||
/// The weights and the fields ids will have the same values.
|
/// All the fields will be inserted in the order of the fields ids map with a weight of 0.
|
||||||
pub fn from_field_id_map_without_searchable(fid_map: &FieldsIdsMap) -> Self {
|
pub fn from_field_id_map_without_searchable(fid_map: &FieldsIdsMap) -> Self {
|
||||||
FieldidsWeightsMap { map: fid_map.ids().map(|fid| (fid, fid)).collect() }
|
FieldidsWeightsMap { map: fid_map.ids().map(|fid| (fid, 0)).collect() }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Removes a field id from the map, returning the associated weight previously in the map.
|
/// Removes a field id from the map, returning the associated weight previously in the map.
|
||||||
|
@ -2492,7 +2492,7 @@ pub(crate) mod tests {
|
|||||||
db_snap!(index, fieldids_weights_map, @r###"
|
db_snap!(index, fieldids_weights_map, @r###"
|
||||||
fid weight
|
fid weight
|
||||||
0 0 |
|
0 0 |
|
||||||
1 1 |
|
1 0 |
|
||||||
"###);
|
"###);
|
||||||
|
|
||||||
index.delete_documents(Default::default());
|
index.delete_documents(Default::default());
|
||||||
@ -2512,7 +2512,7 @@ pub(crate) mod tests {
|
|||||||
db_snap!(index, fieldids_weights_map, @r###"
|
db_snap!(index, fieldids_weights_map, @r###"
|
||||||
fid weight
|
fid weight
|
||||||
0 0 |
|
0 0 |
|
||||||
1 1 |
|
1 0 |
|
||||||
"###);
|
"###);
|
||||||
|
|
||||||
index
|
index
|
||||||
@ -2537,7 +2537,7 @@ pub(crate) mod tests {
|
|||||||
db_snap!(index, fieldids_weights_map, @r###"
|
db_snap!(index, fieldids_weights_map, @r###"
|
||||||
fid weight
|
fid weight
|
||||||
0 0 |
|
0 0 |
|
||||||
1 1 |
|
1 0 |
|
||||||
"###);
|
"###);
|
||||||
|
|
||||||
let rtxn = index.read_txn().unwrap();
|
let rtxn = index.read_txn().unwrap();
|
||||||
|
@ -1587,8 +1587,8 @@ mod tests {
|
|||||||
db_snap!(index, fieldids_weights_map, @r###"
|
db_snap!(index, fieldids_weights_map, @r###"
|
||||||
fid weight
|
fid weight
|
||||||
0 0 |
|
0 0 |
|
||||||
1 1 |
|
1 0 |
|
||||||
2 2 |
|
2 0 |
|
||||||
"###);
|
"###);
|
||||||
|
|
||||||
// Check that the searchable field have been reset and documents are found now.
|
// Check that the searchable field have been reset and documents are found now.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user