Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
101 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,6 +20,7 @@ groonga documentation | |
| tutorial | ||
| suggest | ||
| geolocation_search | ||
| server | ||
| reference | ||
| spec | ||
| limitations | ||
|
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| .. -*- rst -*- | ||
| .. highlightlang:: none | ||
|
|
||
| Server | ||
| ====== | ||
|
|
||
| .. toctree:: | ||
| :maxdepth: 2 | ||
|
|
||
| server/gqtp | ||
| server/http |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| .. -*- rst -*- | ||
| .. highlightlang:: none | ||
|
|
||
| GQTP | ||
| ==== | ||
|
|
||
| TODO | ||
|
|
||
| See :doc:`/reference/executable/groonga`. | ||
|
|
||
| .. | ||
| .. toctree:: | ||
| :maxdepth: 2 | ||
| gqtp/groonga |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| .. -*- rst -*- | ||
| .. highlightlang:: none | ||
|
|
||
| HTTP | ||
| ==== | ||
|
|
||
| Groonga provides two HTTP server implementations. | ||
|
|
||
| * :doc:`http/groonga` | ||
| * :doc:`http/groonga-httpd` | ||
|
|
||
| :doc:`http/groonga` is a simple implemntation. It is fast but doesn't | ||
| have many HTTP features. It is convenient to try groonga because it | ||
| requires just a few command line options to run. | ||
|
|
||
| :doc:`http/groonga-httpd` is a `nginx <http://nginx.org/>`_ based | ||
| implementation. Is is also fast and has full HTTP features. | ||
|
|
||
| .. note:: | ||
|
|
||
| :doc:`http/groonga-httpd` is still experimental. | ||
|
|
||
| .. toctree:: | ||
| :maxdepth: 2 | ||
|
|
||
| http/comparison | ||
| http/groonga | ||
| http/groonga-httpd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| .. -*- rst -*- | ||
| .. highlightlang:: none | ||
|
|
||
| Comparison | ||
| ========== | ||
|
|
||
| There are many differences between :doc:`groonga` and | ||
| :doc:`groonga-httpd`. Here is a comparison table. | ||
|
|
||
| +-----------------------+----------+---------------+ | ||
| | | groonga | groonga-httpd | | ||
| +=======================+==========+===============+ | ||
| | Performance | o | o | | ||
| +-----------------------+----------+---------------+ | ||
| | Configuration file | optional | required | | ||
| +-----------------------+----------+---------------+ | ||
| | Custom prefix path | x | o | | ||
| +-----------------------+----------+---------------+ | ||
| | Multi databases | x | o | | ||
| +-----------------------+----------+---------------+ | ||
| | Basic authentication | x | o | | ||
| +-----------------------+----------+---------------+ | ||
| | Gzip compression | x | o | | ||
| +-----------------------+----------+---------------+ | ||
| | POST | x | x | | ||
| +-----------------------+----------+---------------+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| .. -*- rst -*- | ||
| .. highlightlang:: none | ||
|
|
||
| groonga-httpd | ||
| ============= | ||
|
|
||
| TODO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| .. -*- rst -*- | ||
| .. highlightlang:: none | ||
|
|
||
| groonga | ||
| ======= | ||
|
|
||
| TODO |