pucene / pucene
Monorepository for pucene.
0.1.x-dev
2022-12-31 22:17 UTC
Requires
- pucene/analysis: @dev
- pucene/dbal-driver: @dev
- pucene/index: @dev
- pucene/seal-adapter: @dev
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.13
- jangregor/phpstan-prophecy: ^1.0
- phpspec/prophecy-phpunit: ^2.0
- phpstan/phpstan: ^1.9
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2024-10-30 02:04:57 UTC
README
A pure PHP implementation of lucene index.
Description
Pucene is a pure php-library which basically implements a lucene index. Lucene is a very well documented library - but pucene is not a direct copy - it will define some additional things and will do some things different than the original library.
Components
This repository is the monorepository of the pucene project and contains following components:
- Analysis: Text analysis is the process of converting unstructured text, like the body of an email or a product description, into a structured format that’s optimized for search.
- Dbal Driver: The driver implementation built ontop of doctrine dbal.
- Index: The index analyses, stores and searches for documents. It uses different other packages from this project.
- Seal Adapter: Adapter package that glues pucene into SEAL universe.