All Projects → Southclaws → Pawn Redis

Southclaws / Pawn Redis

Licence: mit
Redis client for the Pawn language

Labels

Projects that are alternatives of or similar to Pawn Redis

Amphora
Middleware for Express that composes components into renderable pages
Stars: ✭ 29 (-19.44%)
Mutual labels:  redis
Wp Vps Build Guide
A verbose build guide for a modern, high-performance WordPress production VPS.
Stars: ✭ 31 (-13.89%)
Mutual labels:  redis
Tools
C# 工具箱,提供Socket(TCP、UDP协议)、Redis、activemq、数据库访问等技术的封装实现
Stars: ✭ 34 (-5.56%)
Mutual labels:  redis
Catalyst
Typescript NodeJS Microservices Boilerplate with Generator CLI - Moleculer, GraphQL, REST, OAuth2, Jaeger, Grafana, Prometheus, Ory Hydra, Ory Keto w/ Access Control middleware, Moleculer-DB GraphQL mixin, Pug, Redis, sibling client repo (login, persistance layer, react-native-web, ios, android)
Stars: ✭ 30 (-16.67%)
Mutual labels:  redis
Quedis
Quedis - redis queue for bosses
Stars: ✭ 31 (-13.89%)
Mutual labels:  redis
Price Tracker
Live and historical prices for fiat currencies, crypto currencies and gold/silver over REST and WebSocket APIs, using Redis as storage. Node.js, jQuery, Bootstrap
Stars: ✭ 32 (-11.11%)
Mutual labels:  redis
Emqx Auth Redis
EMQ X Redis Authentication/ACL Plugin
Stars: ✭ 28 (-22.22%)
Mutual labels:  redis
Redis Go
Go package providing tools for building redis clients, servers and middleware.
Stars: ✭ 34 (-5.56%)
Mutual labels:  redis
Rcluster.lua
lua redis client driver that support redis cluster
Stars: ✭ 31 (-13.89%)
Mutual labels:  redis
Docker Vue Node Nginx Mongodb Redis
🐉 An awesome boilerplate, Integrated Docker, Vue, Node, Nginx, Mongodb and Redis in one, Designed to develop & build your web applications more efficient and elegant.
Stars: ✭ 34 (-5.56%)
Mutual labels:  redis
Universityrecruitment Ssurvey
用严肃的数据来回答“什么样的企业会到什么样的大学招聘”?
Stars: ✭ 30 (-16.67%)
Mutual labels:  redis
Apicache
Simple API-caching middleware for Express/Node.
Stars: ✭ 957 (+2558.33%)
Mutual labels:  redis
Springmvc Project
开箱即用的SpringMVC项目,包含常规业务所需的框架功能整合,更多功能请关注 https://github.com/MartinDai/SpringBoot-Project
Stars: ✭ 33 (-8.33%)
Mutual labels:  redis
Wait4x
Wait4X is a cli tool to wait for everything! It can be wait for a port to open or enter to rquested state.
Stars: ✭ 30 (-16.67%)
Mutual labels:  redis
Sidekiq Job Php
Push and schedule jobs to Sidekiq from PHP
Stars: ✭ 34 (-5.56%)
Mutual labels:  redis
Docker Airflow
Repo for building docker based airflow image. Containers support multiple features like writing logs to local or S3 folder and Initializing GCP while container booting. https://abhioncbr.github.io/docker-airflow/
Stars: ✭ 29 (-19.44%)
Mutual labels:  redis
Soffes.blog
Redis + Git backed blog
Stars: ✭ 31 (-13.89%)
Mutual labels:  redis
Sncredisbundle
A Redis bundle for Symfony supporting Predis and PhpRedis
Stars: ✭ 980 (+2622.22%)
Mutual labels:  redis
Yii2 Queue
Yii2 Queue Extension. Supports DB, Redis, RabbitMQ, Beanstalk and Gearman
Stars: ✭ 977 (+2613.89%)
Mutual labels:  redis
Zabbix Template For Redis
Zabbix template + script useful to monitor Redis Server & Redis Sentinel instances
Stars: ✭ 33 (-8.33%)
Mutual labels:  redis

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

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)

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:

sampctl package install Southclaws/pawn-redis

Include in your code and begin using the library:

#include <redis>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].