mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-25 17:16:00 +03:00
[PR #570] [MERGED] Full-text search (rebased) #1228
Labels
No labels
expected: maybe someday
expected: next release
expected: release after next
expected: unlikely unless contributed
good first ticket
help wanted
pull-request
scope: all users
scope: windows users
size: easy
size: hard
size: medium
size: medium
status: backlog
status: blocked
status: done
status: idea-phase
status: needs followup
status: wip
status: wontfix
touches: API/CLI/Spec
touches: configuration
touches: data/schema/architecture
touches: dependencies/packaging
touches: docs
touches: js
touches: views/replayers/html/css
why: correctness
why: functionality
why: performance
why: security
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ArchiveBox#1228
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/ArchiveBox/ArchiveBox/pull/570
Author: @pirate
Created: 12/5/2020
Status: ✅ Merged
Merged: 12/5/2020
Merged by: @pirate
Base:
v0.5.0← Head:sonic-search📝 Commits (10+)
b1f70b2Initial implementation5f6673cImplement backend architecture for search enginesc2c01afAdd config for search backend47daa03Implement flush for search backend after remove commandf383648Use a generator for snapshot flush from index823df34Use QuerySets for search backend API instead of pksfb67d66fix: Return empty QuerySet instead of list0f7dba0feat: add search filter-type to list command0773f12Add sonic to docker-composea38e3e0Get searc backend password from env var SEARCH_BACKEND_PASSWORD📊 Changes
20 files changed (+406 additions, -12 deletions)
View changed files
📝
Dockerfile(+1 -1)➖
archivebox.egg-info(+0 -1)📝
archivebox/cli/archivebox_list.py(+1 -1)📝
archivebox/cli/archivebox_update.py(+1 -1)📝
archivebox/config.py(+13 -1)📝
archivebox/core/admin.py(+4 -1)➕
archivebox/core/mixins.py(+23 -0)📝
archivebox/core/models.py(+14 -3)📝
archivebox/extractors/__init__.py(+5 -0)📝
archivebox/extractors/readability.py(+5 -2)📝
archivebox/index/__init__.py(+28 -1)📝
archivebox/index/schema.py(+1 -0)📝
archivebox/main.py(+3 -0)➕
archivebox/search/__init__.py(+110 -0)➕
archivebox/search/backends/__init__.py(+0 -0)➕
archivebox/search/backends/ripgrep.py(+47 -0)➕
archivebox/search/backends/sonic.py(+28 -0)➕
archivebox/search/utils.py(+44 -0)📝
docker-compose.yml(+12 -0)➕
etc/sonic/config.cfg(+66 -0)📄 Description
This is just a copy of #543 with the conflicts fixed.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.