All Projects → oivoodoo → Redis_poolex

oivoodoo / Redis_poolex

Redis pool using poolboy(connection pool) and exredis(redis client).

Programming Languages

elixir
2628 projects

Labels

Projects that are alternatives of or similar to Redis poolex

Goodskill
🐂基于springcloud +dubbo构建的模拟秒杀项目,模块化设计,集成了分库分表、elasticsearch🔍、gateway、mybatis-plus、spring-session等常用开源组件
Stars: ✭ 786 (+4266.67%)
Mutual labels:  redis
Gopipe Redis
Utility that generates a file for mass piping in the Redis key-value store
Stars: ✭ 5 (-72.22%)
Mutual labels:  redis
Redis Marshal
Lightweight Redis data exploration tool
Stars: ✭ 16 (-11.11%)
Mutual labels:  redis
Springbootexamples
Spring Boot 学习教程
Stars: ✭ 794 (+4311.11%)
Mutual labels:  redis
Redix
Fast, pipelined, resilient Redis driver for Elixir. 🛍
Stars: ✭ 816 (+4433.33%)
Mutual labels:  redis
Redis Migrate Tool
A convenient and useful tool for migrating data between redis group.
Stars: ✭ 824 (+4477.78%)
Mutual labels:  redis
Spark Redis
A connector for Spark that allows reading and writing to/from Redis cluster
Stars: ✭ 773 (+4194.44%)
Mutual labels:  redis
Esp8266 Redis
An Arduino library for Redis that works on ESP8266.
Stars: ✭ 18 (+0%)
Mutual labels:  redis
Laravel Event Broadcast
Laravel event broadcasting with Node.js, Redis & Socket.io
Stars: ✭ 5 (-72.22%)
Mutual labels:  redis
Graphql Redis Subscriptions
A graphql subscriptions implementation using redis and apollo's graphql-subscriptions
Stars: ✭ 829 (+4505.56%)
Mutual labels:  redis
Geek Framework
基于SpringBoot+Shiro+Redis+Jwt+Thymeleaf+MyBatis 开发的后台用户、角色、权限、会员管理、RestFul、Token和前台用户登录注册以及前后台用户分离的脚手架,技术交流请加QQ群:805442966
Stars: ✭ 804 (+4366.67%)
Mutual labels:  redis
Hslcommunication
An industrial IoT underlying architecture framework, focusing on the underlying technical communications and cross-platform, cross-language communication functions, to achieve a variety of mainstream PLC data reading and writing, to achieve modbus of various protocols read and write, and so on, to support the rapid construction of industrial upper computer software, configuration software, SCADA software, factory mes system, To help enterprise Industry 4.0 take-off, to achieve intelligent manufacturing, smart factory goals. The main PLC contains Siemens, Mitsubishi, Omron, Panasonic, Modbus, AB-PLC, Redis
Stars: ✭ 816 (+4433.33%)
Mutual labels:  redis
Blog
🤣本项目有不同开发版本,最新版底层基于 abp vNext 搭建和免费开源跨平台框架 .NET5 进行开发,使用 MongoDB 存储数据,Redis 缓存数据。项目采用前后端分离的模式进行开发,API 遵循 RESTful 接口规范,页面使用 Blazor 进行开发,可作为 .NET Core 入门项目进行学习。If you liked `Blog` project or if it helped you, please give a star ⭐️ for this repository. 👍👍👍
Stars: ✭ 827 (+4494.44%)
Mutual labels:  redis
Java Knowledge Mind Map
【🌱🌱Java服务端知识技能图谱】用思维脑图梳理汇总Java服务端知识技能
Stars: ✭ 787 (+4272.22%)
Mutual labels:  redis
Gush
Fast and distributed workflow runner using ActiveJob and Redis
Stars: ✭ 894 (+4866.67%)
Mutual labels:  redis
Funpyspidersearchengine
Word2vec 千人千面 个性化搜索 + Scrapy2.3.0(爬取数据) + ElasticSearch7.9.1(存储数据并提供对外Restful API) + Django3.1.1 搜索
Stars: ✭ 782 (+4244.44%)
Mutual labels:  redis
Treestats.net
Player tracking for Asheron's Call
Stars: ✭ 5 (-72.22%)
Mutual labels:  redis
Rerate
redis-based rate counter and rate limiter
Stars: ✭ 18 (+0%)
Mutual labels:  redis
M Mall Admin
🐶 微信小程序-小商城后台(基于 Node.js、MongoDB、Redis 开发的系统...)
Stars: ✭ 895 (+4872.22%)
Mutual labels:  redis
Szt Bigdata
深圳地铁大数据客流分析系统🚇🚄🌟
Stars: ✭ 826 (+4488.89%)
Mutual labels:  redis

RedisPoolex

Redis connection pool using poolboy and exredis libraries.

Examples

alias RedisPoolex, as: Redis

Redis.query(["SET", "key1", "value1"]) => "OK"
Redis.query(["GET", "key1"]) => "value1"
Redis.query(["GET", "key2"]) => :undefined

Installation

If available in Hex, the package can be installed as:

  1. Add redis_poolex to your list of dependencies in mix.exs:

    def deps do [{:redis_poolex, "~> 0.0.5"}] end

  2. Ensure redis_poolex is started before your application:

    def application do [applications: [:redis_poolex]] end

Dev Env

make build - setup containers make test - run test cases

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].