Micro Web Crawler in PHP & Manticore
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

151 lines
3.5 KiB

1 year ago
# Yo!
1 year ago
1 year ago
Micro Web Crawler in PHP & Manticore
1 year ago
8 months ago
Yo! is the super thin client-server crawler based on [Manticore](https://github.com/manticoresoftware) full-text search.\
Compatible with different networks, includes flexible settings, history snaps, CLI tools and UI for [Gemini Protocol](https://geminiprotocol.net).
To use `HTTP` version, please checkout [main branch](https://github.com/YGGverse/Yo)!
1 year ago
1 year ago
## Features
1 year ago
1 year ago
* MIME-based crawler with flexible filter settings by regular expressions, selectors, external links etc
* Page snap history with local and remote mirrors support (including FTP protocol)
* CLI tools for index administration and crontab tasks
* Gemini Protocol UI (coming soon)
1 year ago
1 year ago
## Components
* [Manticore Server](https://github.com/manticoresoftware/manticoresearch)
1 year ago
* [PHP library for Manticore](https://github.com/manticoresoftware/manticoresearch-php)
8 months ago
* [PHP library for Gemini Protocol](https://github.com/YGGverse/gemini-php)
8 months ago
* [PHP library for Network operations](https://github.com/YGGverse/net-php)
1 year ago
* [FTP client for snap mirrors](https://github.com/YGGverse/ftp-php)
1 year ago
1 year ago
### Install
8 months ago
#### Environment
##### Debian
8 months ago
* `wget https://repo.manticoresearch.com/manticore-repo.noarch.deb`
* `dpkg -i manticore-repo.noarch.deb`
* `apt update`
* `apt install git composer manticore manticore-extra memcached php-fpm php-mbstring php-memcached`
8 months ago
Yo search engine uses Manticore as the primary database. If your server sensitive to power down,
change default [binlog flush strategy](https://manual.manticoresearch.com/Logging/Binary_logging#Binary-flushing-strategies) to `binlog_flush = 1`
12 months ago
8 months ago
#### Deployment
12 months ago
* `git clone https://github.com/YGGverse/Yo.git`
* `cd Yo`
* `git checkout gemini`
* `composer update`
12 months ago
#### Development
* `git clone https://github.com/YGGverse/Yo.git`
8 months ago
* `cd Yo`
* `git checkout gemini`
8 months ago
* `git checkout -b pr-branch`
8 months ago
* `git commit -m 'new fix'`
* `git push`
#### Update
* `cd Yo`
* `git pull`
* `composer update`
12 months ago
#### Init
* `cp example/config.json config.json`
* `php src/cli/index/init.php`
#### Usage
* `php src/cli/document/add.php URL`
* `php src/cli/document/crawl.php`
* `php src/cli/document/search.php '*'`
1 year ago
#### Gemini UI
1 year ago
Coming soon..
1 year ago
## Documentation
1 year ago
1 year ago
### CLI
1 year ago
1 year ago
#### Index
1 year ago
1 year ago
##### Init
1 year ago
Create initial index
```
php src/cli/index/init.php [reset]
```
* `reset` - optional, reset existing index
##### Alter
Change existing index
```
php src/cli/index/alter.php {operation} {column} {type}
```
* `operation` - operation name, supported values: `add`|`drop`
* `column` - target column name
* `type` - target column type, supported values: `text`|`integer`
1 year ago
#### Document
1 year ago
1 year ago
##### Add
1 year ago
```
php src/cli/document/add.php URL
```
* `URL` - add new URL to the crawl queue
1 year ago
##### Crawl
1 year ago
```
php src/cli/document/crawl.php
```
##### Clean
Make index optimization, apply new configuration rules
```
php src/cli/document/clean.php [limit]
```
* `limit` - integer, documents quantity per queue
1 year ago
##### Search
1 year ago
```
php src/cli/document/search.php '@title "*"' [limit]
```
* `query` - required
* `limit` - optional search results limit
12 months ago
### Backup
#### Logical
12 months ago
SQL text dumps could be useful for public index distribution, but requires more computing resources.
12 months ago
[Read more](https://manual.manticoresearch.com/Securing_and_compacting_a_table/Backup_and_restore#Backup-and-restore-with-mysqldump)
#### Physical
12 months ago
Better for infrastructure administration and includes original data binaries.
12 months ago
[Read more](https://manual.manticoresearch.com/Securing_and_compacting_a_table/Backup_and_restore#Using-manticore-backup-command-line-tool)
1 year ago
## Instances
Coming soon..