KO
|
EN
gitlite โ search
Search
#javascript
#hacktoberfest
#python
#python3
#typescript
#react
#android
#hacktoberfest-accepted
#mysql
#php
#cpp
#ubuntu
pawn-redis
โ 44
Open GitHub โ
Redis client for the Pawn language
Download README (.md)
Explore Similar Repositories
Pawn.Regex
:
๐ Plugin that adds support for regular expressions in Pawn
fiddle
:
A playground platform for the PAWN scripting language
pawn-sublime-language
:
Pawn language settings for Sublime Text 3. Copied from C++ but with Pawn language and SA:MP specific modifications.
sampvoice
:
Software Development Kit for implementing Pawn voice systems for open.mp servers.
Quincy
:
An IDE for Pawn (scripting language).
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
pawn-redis
?
Download (.md)
# Redis for SA:MP A powerful Redis plugin granting access to a fast in-memory database and asynchronous message channels between other programs. It's open source and available [here](https://github.com/Southclaws/pawn-redis) ## What Redis Is > Redis is an open source (BSD licensed), in-memory data structure store, used > as a database, cache and message broker. It supports data structures such as > strings, hashes, lists, sets, sorted sets with range queries, bitmaps, > hyperloglogs and geospatial indexes with radius queries. (from the [Redis official site](https://redis.io)) In SA:MP terms: Redis is can be the GVar plugin on steroids. It can be a place to store large amounts of information and free up heap space (and cut compile times!) You can also use Redis to delegate slower tasks to other programs through the power of pubsub message queues! ## What Redis Is Not Redis is not a permanent database. It exists entirely in memory which makes it very fast to read from and write to but it is not a replacement for something like MySQL to store data for a _very long period of time_. ## Installation Simply install to your project: ```bash sampctl package install Southclaws/pawn-redis ``` Include in your code and begin using the library: ```pawn #include <redis> ```