-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DOC-4996 hiredis docs #1332
Merged
Merged
DOC-4996 hiredis docs #1332
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
155426c
DOC-4996 started hiredis client section
andy-stark-redis 425bfab
DOC-4996 added reply table for RESP2
andy-stark-redis 3509109
DOC-4996 added RESP3 reply types
andy-stark-redis 5903466
DOC-4996 commands and replies
andy-stark-redis fb0840f
DOC-4996 add replies and connect pages
andy-stark-redis 0294d8e
DOC-4996 added trans/pipe page plus fixes
andy-stark-redis 2314eae
Apply suggestions from code review
andy-stark-redis 6c6ff08
DOC-4996 removed null checks in example for clarity
andy-stark-redis 4ac92d9
DOC-4996 added links to async and Qt examples
andy-stark-redis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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,133 @@ | ||
--- | ||
categories: | ||
- docs | ||
- develop | ||
- stack | ||
- oss | ||
- rs | ||
- rc | ||
- oss | ||
- kubernetes | ||
- clients | ||
description: Connect your C application to a Redis database. | ||
linkTitle: hiredis (C) | ||
title: hiredis guide (C) | ||
weight: 9 | ||
--- | ||
|
||
[`hiredis`](https://github.com/redis/hiredis) is the | ||
[C language](https://en.wikipedia.org/wiki/C_(programming_language)) | ||
client for Redis. | ||
The sections below explain how to install `hiredis` and connect your application | ||
to a Redis database. | ||
|
||
`hiredis` requires a running Redis or [Redis Stack]({{< relref "/operate/oss_and_stack/install/install-stack/" >}}) server. See [Getting started]({{< relref "/operate/oss_and_stack/install/" >}}) for Redis installation instructions. | ||
|
||
## Build and install | ||
|
||
Clone or download the `hiredis` source from the [Github repository](https://github.com/redis/hiredis). | ||
Then, in a terminal, go into the `hiredis` folder and run the `make` command to build | ||
the dynamically-loaded library for `hiredis` (this has the name `libhiredis.dylib` on | ||
MacOS and `libhiredis.so` on Linux). You can copy this library to your | ||
project folder or run `sudo make install` to install it to `/usr/local/lib`. | ||
You should also copy the header files `hiredis.h`, `alloc.h`, `read.h`, and | ||
`sds.h` to your project. | ||
|
||
## Connect and test | ||
|
||
The code in the example below connects to the server, stores and retrieves | ||
a string key using [`SET`]({{< relref "/commands/set" >}}) and | ||
[`GET`]({{< relref "/commands/get" >}}), and then finally closes the | ||
connection. An explanation of the code follows the example. | ||
|
||
```c | ||
#include <stdio.h> | ||
|
||
#include "hiredis.h" | ||
|
||
int main() { | ||
// The `redisContext` type represents the connection | ||
// to the Redis server. Here, we connect to the | ||
// default host and port. | ||
redisContext *c = redisConnect("127.0.0.1", 6379); | ||
|
||
// Check if the context is null or if a specific | ||
// error occurred. | ||
if (c == NULL || c->err) { | ||
if (c != NULL) { | ||
printf("Error: %s\n", c->errstr); | ||
// handle error | ||
} else { | ||
printf("Can't allocate redis context\n"); | ||
} | ||
andy-stark-redis marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
exit(1); | ||
} | ||
|
||
// Set a string key. | ||
redisReply *reply = redisCommand(c, "SET foo bar"); | ||
andy-stark-redis marked this conversation as resolved.
Show resolved
Hide resolved
|
||
printf("Reply: %s\n", reply->str); // >>> Reply: OK | ||
freeReplyObject(reply); | ||
|
||
// Get the key we have just stored. | ||
reply = redisCommand(c, "GET foo"); | ||
printf("Reply: %s\n", reply->str); // >>> Reply: bar | ||
freeReplyObject(reply); | ||
|
||
// Close the connection. | ||
redisFree(c); | ||
} | ||
``` | ||
|
||
For a real project, you would build your code with a makefile, but for | ||
this simple test, you can just place it in a file called `main.c` and | ||
build it with the following command (assuming you used `make install` to | ||
install the `libhiredis` library): | ||
|
||
```bash | ||
cc main.c -L/usr/local/lib -lhiredis | ||
``` | ||
|
||
The default executable filename is `a.out`. If you run this file from | ||
the terminal, you should see the following output: | ||
|
||
``` | ||
% ./a.out | ||
Reply: OK | ||
Reply: bar | ||
``` | ||
|
||
The code first uses `redisConnect()` to open the connection for | ||
all subsequent commands to use. See | ||
[Connect]({{< relref "/develop/clients/hiredis/connect" >}}) for | ||
more information about connecting to Redis. | ||
|
||
The `redisCommand()` function | ||
issues commands to the server, each of which returns a | ||
`redisReply` pointer. Here, the reply is a string, which you can | ||
access using the `str` field of the reply. The `redisCommand()` | ||
call allocates memory for the reply, so you should free this | ||
with `freeReplyObject()` when you have finished using it. | ||
See [Issue commands]({{< relref "/develop/clients/hiredis/issue-commands" >}}) | ||
and [Handle replies]({{< relref "/develop/clients/hiredis/handle-replies" >}}) | ||
for more information. | ||
|
||
Finally, you should close the connection to Redis with a | ||
call to `redisFree()`. This is not strictly necessary | ||
for this short test program, but real-world code will typically | ||
open and use many connections. You must free them after using them | ||
to prevent errors. | ||
|
||
andy-stark-redis marked this conversation as resolved.
Show resolved
Hide resolved
|
||
## More information | ||
|
||
The [`hiredis`](https://github.com/redis/hiredis) Github repository contains | ||
examples and details that may be useful if you are using `hiredis` to | ||
implement a higher-level client for another programming language. There are | ||
also examples showing how to use `hiredis` from a | ||
[C++ application](https://github.com/redis/hiredis/blob/master/examples/example-qt.cpp) | ||
created with [Qt](https://www.qt.io/) and how to use the | ||
[asynchronous API](https://github.com/redis/hiredis?tab=readme-ov-file#asynchronous-api) | ||
with the [libev](https://software.schmorp.de/pkg/libev.html) and | ||
[libevent](https://libevent.org/) libraries. | ||
|
||
See the other pages in this section for more information and examples. |
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,65 @@ | ||
--- | ||
categories: | ||
- docs | ||
- develop | ||
- stack | ||
- oss | ||
- rs | ||
- rc | ||
- oss | ||
- kubernetes | ||
- clients | ||
description: Connect to the server with `hiredis`. | ||
linkTitle: Connect | ||
title: Connect | ||
weight: 1 | ||
--- | ||
|
||
## Basic synchronous connection | ||
|
||
The example below creates a simple synchronous connection to a local | ||
Redis server and tests the connection, before closing it with | ||
`redisFree()`. The `redisConnect()` function takes just a hostname | ||
and port as its arguments, and returns a context object. | ||
|
||
```c | ||
#include <stdio.h> | ||
|
||
#include "hiredis.h" | ||
. | ||
. | ||
. | ||
|
||
// The `redisContext` type represents the connection | ||
// to the Redis server. Here, we connect to the | ||
// default host and port. | ||
redisContext *c = redisConnect("127.0.0.1", 6379); | ||
|
||
// Check if the context is null or if a specific | ||
// error occurred. | ||
if (c == NULL || c->err) { | ||
if (c != NULL) { | ||
printf("Error: %s\n", c->errstr); | ||
// handle error | ||
} else { | ||
printf("Can't allocate redis context\n"); | ||
} | ||
|
||
exit(1); | ||
} | ||
|
||
// Set a string key. | ||
redisReply *reply = redisCommand(c, "SET foo bar"); | ||
printf("Reply: %s\n", reply->str); // >>> Reply: OK | ||
freeReplyObject(reply); | ||
|
||
// Get the key we have just stored. | ||
reply = redisCommand(c, "GET foo"); | ||
printf("Reply: %s\n", reply->str); // >>> Reply: bar | ||
freeReplyObject(reply); | ||
|
||
// Close the connection. | ||
redisFree(c); | ||
``` | ||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not clear to me how hiredis is to be capitalized. The GitHub page uses "Hiredis"; but some blogs use either "HIREDIS" or "hiredis". It's not a showstopper by any means; just me being overly pedantic.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, tbh, I just picked one and tried to stick with it :-) I'll be happy to change it if anyone has a definitive version of the name.