Update guide.html
This commit is contained in:
parent
50591ee23a
commit
d5163de1c5
1 changed files with 3 additions and 6 deletions
|
@ -40,16 +40,13 @@ pre { width:700px; white-space: pre-wrap; word-wrap: break-word; }
|
|||
<a href="guide.html#scale">Scaling</a>
|
||||
|
||||
<h2><a name="overview">Overview</a></h2>
|
||||
Released July 8, 2022
|
||||
<br>
|
||||
<br>
|
||||
Wiby is a search engine for the World Wide Web. The source code is now free under the GPLv2 license. I have been longing for this day! You can watch a quick demo <a href="https://youtu.be/nCfWJqNBqHo">here</a>.
|
||||
Wiby is a search engine for the World Wide Web. The source code is now free as of July 8, 2022 under the GPLv2 license. I have been longing for this day! You can watch a quick demo <a href="https://youtu.be/nCfWJqNBqHo">here</a>.
|
||||
<br>
|
||||
<br>
|
||||
It includes a web interface allowing guardians to control where, how far, and how often it crawls websites and follows hyperlinks. The search index is stored inside of a MySQL full-text index.
|
||||
<br>
|
||||
<br>
|
||||
Fast queries are maintained by concurrently reading different sections of the index across multiple replication servers, returning a list of top results from each replica,
|
||||
Fast queries are maintained by concurrently reading different sections of the index across multiple replication servers or across duplicate server connections, returning a list of top results from each connection,
|
||||
then searching the combined list to ensure correct ordering. Replicas that fail are automatically excluded; new replicas are easy to include.
|
||||
As new pages are crawled, they are stored randomly across the index, ensuring each replica can obtain relevant results.<br>
|
||||
<br>
|
||||
|
@ -509,7 +506,7 @@ UNLOCK TABLES;
|
|||
You can now close that window if you want.
|
||||
<br>
|
||||
<br>
|
||||
On the replica server, login to mysql and create the database:
|
||||
On the replica server, login to MySQL and create the database:
|
||||
<pre>
|
||||
CREATE DATABASE wiby;
|
||||
EXIT;
|
||||
|
|
Loading…
Add table
Reference in a new issue