Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skyjay1/word_chain
https://github.com/skyjay1/word_chain
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/skyjay1/word_chain
- Owner: skyjay1
- License: other
- Created: 2024-09-13T18:03:31.000Z (4 months ago)
- Default Branch: origin
- Last Pushed: 2024-09-26T20:44:55.000Z (4 months ago)
- Last Synced: 2024-11-04T03:25:00.955Z (2 months ago)
- Language: C++
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Step 1: Install hiredis
You can download hiredis from its GitHub repository or use a package manager if available.To download and compile hiredis manually:
```sh
git clone https://github.com/redis/hiredis.git
cd hiredis
mkdir build
cd build
cmake ..
make
sudo make install
```## Step 2. Install Redis++
To download and compile hiredis manually:
```sh
git clone https://github.com/sewenew/redis-plus-plus.git
cd redis-plus-plus
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make
sudo make install
```## Step 2. Set the Library Path
You need to ensure that the runtime linker can find the hiredis library. This is done by setting the `LD_LIBRARY_PATH` environment variable. Add this line to your `~/.bashrc`:
```sh
export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
```
Then reload the file:```sh
source ~/.bashrc
```