https://github.com/groonga/groonga-http
Groonga HTTP client library for Perl
https://github.com/groonga/groonga-http
Last synced: 11 months ago
JSON representation
Groonga HTTP client library for Perl
- Host: GitHub
- URL: https://github.com/groonga/groonga-http
- Owner: groonga
- License: other
- Created: 2021-11-30T07:52:50.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-15T02:43:50.000Z (over 3 years ago)
- Last Synced: 2025-02-10T11:45:20.873Z (over 1 year ago)
- Language: Perl
- Homepage: https://groonga.github.io/Groonga-HTTP/
- Size: 888 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: COPYING
Awesome Lists containing this project
README
# NAME
Groonga::HTTP - Perl module for sending HTTP requests to Groonga.
# INSTALL
% cpanm Groonga::HTTP
# SYNOPSIS
use Groonga::HTTP;
my $groonga = Groonga::HTTP->new;
# Search for the "Site" table of Groonga.
my @result = $groonga->select(
table => 'Site'
);
print @result;
# DESCRIPTION
Groonga-HTTP is a Perl module for sending HTTP requests to Groonga.
Groonga-HTTP provides user-friendly Web API instead of low-level Groonga Web API.
The user-friendly Web API is implemented top of the low-level Groonga Web API.
# LICENSE
Copyright 2021-2022 Horimoto Yasuhiro.
GNU Lesser General Public License version 3 or later.
See [COPYING](https://github.com/groonga/Groonga-HTTP/blob/main/COPYING) and [COPYING.LESSER](https://github.com/groonga/Groonga-HTTP/blob/main/COPYING.LESSER) for details.
# AUTHOR
Horimoto Yasuhiro