meilisearch/MeiliSearch

Change key actions to be bitflags

Open

#4,645 opened on 2024年5月21日

GitHub で見る
 (11 comments) (0 reactions) (0 assignees)Rust (733 forks)batch import
good first issuemaintenance

Repository metrics

Stars
 (20,887 stars)
PR merge metrics
 (平均マージ 11d 20h) (30d で 41 merged PRs)

説明

Currently, the Meilisearch action keys are single numbers and therefore cannot be combined. It's not possible to OR them NOT them. I needed to do a basic documents.add | documents.delete for the edit documents by using a function feature.

We must use bitflags to define those actions and be able to combine them. We could have 32 or 64 different combinable actions. We already use this library in heed and it works very well.

コントリビューターガイド