mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-25 17:16:00 +03:00
[PR #543] [CLOSED] Full-text search #2725
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#2725
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/543
Author: @jdcaballerov
Created: 11/19/2020
Status: ❌ Closed
Base:
v0.5.0← Head:sonic-search📝 Commits (10+)
379b4b0Initial implementation5f38f14Implement backend architecture for search enginesf74f1d8Add config for search backendf5fbb67Implement flush for search backend after remove commandb33db1dUse a generator for snapshot flush from index05ace2bUse QuerySets for search backend API instead of pksa3c4c72fix: Return empty QuerySet instead of listd02bbfafeat: add search filter-type to list command3f3f87eMerge branch 'master' into sonic-search4e4d3e2Add sonic to docker-compose📊 Changes
24 files changed (+577 additions, -47 deletions)
View changed files
📝
Dockerfile(+1 -1)📝
archivebox.egg-info/requires.txt(+2 -0)📝
archivebox/cli/archivebox_list.py(+1 -1)📝
archivebox/cli/archivebox_update.py(+1 -1)📝
archivebox/config.py(+13 -1)📝
archivebox/core/admin.py(+2 -1)➕
archivebox/core/migrations/0007_archiveresult.py(+91 -0)➕
archivebox/core/mixins.py(+23 -0)📝
archivebox/core/models.py(+31 -2)📝
archivebox/core/utils.py(+47 -30)📝
archivebox/extractors/__init__.py(+18 -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)...and 4 more files
📄 Description
Summary
This PR Adds the ability to do full-text search 🎉
Related issues
#22 #24
Changes these areas
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.