Questions tagged [redislabs]

redislabs.com is a company that offer cloud service about Redis and Memcached

redislabs.com is a company that offer cloud service about and .

They offer fully-managed cloud services: Redis Cloud and Memcached Cloud with free start plan.

Completely free developers from dealing with nodes, clusters, scaling, data-persistence and failure recovery, while providing true auto-scalability and instant failover.

A lot of integration libraries are available on the redislab github repo account

43 questions
7
votes
1 answer

redigo: getting dial tcp: connect: cannot assign requested address

I have an application that makes about 400 reads per seconds and 100 writes per second to redis (hosted on redislabs). The application is using github.com/garyburd/redigo package as a redis proxy. I have two functions which are the only ones being…
orcaman
  • 6,263
  • 8
  • 54
  • 69
6
votes
1 answer

Using RediSearch: Module Disabled in Open Source Redis

I'm currently using Redis V4.09 on Ubuntu 18.04 and I downloaded RediSearch from https://redislabs.com/redis-enterprise-software/download-center/modules/ The module runs correctly with the Redis Server but when I try to use a command from RediSearch…
Yun Jae Jung
  • 139
  • 1
  • 8
5
votes
1 answer

How to make Geo-distributed Active-Active redis clusters architecture

Problem statement: My application will be deployed in 3 separate regions, viz: North America, Europe, and Asia. I want to build a redis architecture with the following constraints: Each region should have it's own Redis cluster which can have…
AnukuL
  • 595
  • 1
  • 7
  • 21
4
votes
2 answers

RedisInsight Docker displaying: site cannot be reached in browser

I'm new to Redis/RedisInsight and Docker. I have windows 8. I'm trying to use RedisInsight via docker. I'm running following command. docker run -v redisinsight:/db -p 8001:8001 redislabs/redisinsight as mentioned in this…
oOXAam
  • 237
  • 1
  • 6
  • 20
3
votes
1 answer

Getting multiple hashes from redis using StackExchange.Redis

I need get about 10k hashes from redis server. Since there is no command to get multiple hashes in redis I was iterating through the all keys using db.HashGetAllAsync() call and then waiting all tasks to complete. Even though it worked I saw a…
pauliusnrk
  • 593
  • 7
  • 18
3
votes
1 answer

Whats the correct way to maintain ConnectionMultiplexer object in StackExchange.Redis?

I'm are storing ConnectionMultiplexer static object in ASP.NET MVC website getting ~500req/sec which are hitting Redis instance on RedisLabs. Once in a while I see errors saying SocketFailure on EVAL and increased connection count on RedisLabs…
pauliusnrk
  • 593
  • 7
  • 18
2
votes
1 answer

Manipulating nested array of obects in RedisJSON

I have a JSON with nested array like below to be saved in Redis. I am using RedisJSON module to save the data as JSON. customer:12345 : { info : { key1: val1, key2: val2, key3: val3 }, rides: [ { …
Giri
  • 451
  • 1
  • 4
  • 13
2
votes
1 answer

Adding Prefix when creating an Index using Jredisearch

I use Jredisearch(com.redislabs:jredisearch:2.0.0) to store data in an Index. I want to add a prefix while creating the Index. I am able to add prefix using the below Redisearch command FT.CREATE MyIndex ON HASH PREFIX 1 doc: SCHEMA name TEXT But…
2
votes
1 answer

RedisJSON - MGET Example?

I am using RedisJSON and I can't figure out how to get the full JSON values stored for multiple keys, following the documentation on the official site of the plugin. For example, from the redis-cli: redis-cli-1234> json.set k1 . '{"a":"a"…
orcaman
  • 6,263
  • 8
  • 54
  • 69
2
votes
1 answer

Best way to run Redis/Rejson with HA on AWS

As AWS & GCP is not providing managed service for any of the modules of Redis. I am looking forward to running Redis ReJson with HA configuration on AWS. Is it best way to set it up on EC2 with RDB backup? How EBS storage will work as i want multi…
Harsh Manvar
  • 27,020
  • 6
  • 48
  • 102
2
votes
3 answers

SSL connectivity to Redis with StackExchange.Redis

I am having a very weird issue with StackExchange.Redis to connect with Redis. I have enabled SSL on Redis database and I am not able to connect from client to Redis server with SSL certificate with below code. static RedisConnectionFactory() …
SoftLover
  • 101
  • 1
  • 12
1
vote
0 answers

Cannot connect to Redis Labs from C#

I recently set up a Redis instance on Redis Labs, and wrote this code to connect: using StackExchange.Redis; var redis = ConnectionMultiplexer.Connect( ConfigurationOptions.Parse( …
Stephen Collins
  • 3,523
  • 8
  • 40
  • 61
1
vote
1 answer

How to install RedisJSON on existing RedisLabs instance

I have a (paid) redis-labs instance. how can I use redis-json features on top of it? Also, can I use normal redis-commands in a redis which has redis-json module installed?
Stav Alfi
  • 13,139
  • 23
  • 99
  • 171
1
vote
0 answers

ReplyError: ERR max number of clients reached - Redis

I'm running this function from a NodeJS script: const redis = require('redis') const redisOptions = { url: '*****', password: '******' } const checkMessageStatus = (cachedMessageId, callback = () => {}) => { const client =…
Luke Schoenberger
  • 447
  • 1
  • 5
  • 7
1
vote
0 answers

Can we reliably scale a URL shortner service using Redis cluster? (i.e. do we need Zookeeper?)

I was watching this video about how to build a highly scalable URL shortener service. https://www.youtube.com/watch?v=JQDHz72OA3c The instructor suggested that we can simply use a counter and hash that counter to provide the shortened URL. However,…
Raja Rao
  • 5,691
  • 2
  • 28
  • 31
1
2 3