Tagged Questions
0
votes
0answers
12 views
Sidekiq process creating file from out of nowhere
I have a model that has a method that is called from a Sidekiq process. I used to have this model create a csv file. I have removed all of that code.
When I run the process from Sidekiq, that file ...
0
votes
0answers
27 views
How to prevent storing some random keys in rails redis store?
I am using redis-store for caching in my rails application.When i look at my keys which stored in the redis-store using command redis-cli -> KEYS *.It shows some random keys.
...
0
votes
1answer
19 views
How do I monitor redistogo logs?
I have a Rails app on Heroku using RedisToGo with gem redis. How do I do something similar to:
$ redis-cli monitor
but on RedisToGo?
0
votes
0answers
57 views
session Redis-store doing same get for a key multiple times in one request
I recently run into issues with Redis in RoR 3.2.13 where I'm getting timeout exceptions, I can't figure out why is this happening when that never happened before anyway when I was trying to find the ...
1
vote
1answer
187 views
Sidekiq jobs stuck in enqueue
Sidekiq has been working in development mode just perfectly. Now that I am trying to use it in production, all the jobs are just sitting in enqueue and aren't ever being run. Could anyone point me ...
0
votes
1answer
70 views
Omit, skip redis cache store, if it not available
I use redis-store as cache store for Rails
config.cache_store = :redis_store
When the redis-request fails (no connection during restart of redis, redis down, timeout, etc) the whole application ...
0
votes
1answer
51 views
Saving and retrieving array of strings in Redis
I'm looking for some examples of getting and setting arrays of strings, and I can't seem to find one or make it work.
The strings themselves are SecureRandom.hex values. Think of them like invite ...
0
votes
1answer
276 views
Sidekiq not processing queue
What possible reasons can Sidekiq prevent from processing jobs in the queue? The queue is full. The log file sidekiq.log indicates no activity at all. Thus the queue is full but the log is empty, and ...
0
votes
0answers
74 views
Rescuing Redis Exception in Rails
I currently have a Rails 3.2.13 app using redis as its cache_store and for Sidekiq.
I'm also using redis master-slave. I ran into an issue where during failover a slave would be in the process of ...
0
votes
0answers
61 views
Redis losing connection in Rails application
I'm working on a Ruby on Rails application and using Redis to store some realtime statistical information for my project.
My application runs on Apache/Passenger. I adopted a slightly different ...
1
vote
0answers
106 views
Rails sessions with redis, generating unnecessary session keys
I am having a problem where Redis is gaining a "appSession:*" key at a rate of almost 1 per second. There is no way I have this many users online, there are not even that many users in the database. ...
0
votes
1answer
69 views
Starting a Resque Job handled by another Rails Server
I have a Rails with a worker (Worker App) that I want another Rails app to invoke (Requester App). One option is to create a controller action on the Worker App that the Requester App can post to.
...
0
votes
0answers
66 views
Redis and Faye: Resque.enqueue(klass, *args) without id (*args)
This is my class:
class FayeJob
@queue = :faye_server
def self.perform
message = {:channel => "/messages/new", :data => "private", :ext => {:auth_token => FAYE_TOKEN}}
uri ...
0
votes
1answer
188 views
rails 3 resque-scheduler no queues being registered
I am currently trying to set up resque-scheduler for my rails 3 application. In my simple test application, I am trying to expire a token which is in my User model 10 seconds after it has been set.
...
0
votes
0answers
50 views
weird behaviour with datamapper/redis and rails
gem 'rails', '3.2.11'
gem 'dm-core', '1.2.0'
gem 'dm-redis-adapter', '0.8.2'
gem 'dm-aggregates', '1.2.0'
gem 'dm-types', '1.2.0'
Hey guys, im using Datamapper with redis and i have the following ...