A web interface for managing your Redis instance

栏目: IT技术 · 发布时间: 5年前

内容简介:Web interface that allows you to manage easily your Redis instance (see keys, memory used, connected client, etc...).The Dashboard allows you to check the Memory usage, CPU and Redis clients.

RedisWebManager

Web interface that allows you to manage easily your Redis instance (see keys, memory used, connected client, etc...).

Check your stats

The Dashboard allows you to check the Memory usage, CPU and Redis clients.

A web interface for managing your Redis instance

Manage your redis keys

You can easily edit and delete any keys stored in your redis database.

A web interface for managing your Redis instance

Keep an eye on your redis clients

Check how many clients are connected and their infos.

A web interface for managing your Redis instance

Installation

Add this line to your application's Gemfile:

gem 'redis_web_manager'

And then execute:

$ bundle

Or install it yourself as:

$ gem install redis_web_manager

Add the custom route in your routes.rb :

mount RedisWebManager::Engine => '/redis_web_manager'

Access to RedisWebManager at /redis_web_manager

Configuration

You can configure RedisWebManager:

# initializers/redis_web_manager.rb

RedisWebManager.configure do |config|
  config.redis = Redis.new(db: 1) # Default Redis.new (Instance of Redis)
  config.lifespan = 2.days # Default 15.days (Lifespan of each keys for dashboard)
  config.authenticate = proc {
                           authenticate_or_request_with_http_basic do |username, password|
                              username == 'TEST' && password == 'TEST'
                            end
                          } # Default nil (Authenticate method to secure tools)
end

Collect data for dashboard

In order to have data on your dashboard you must collect the data like this:

data = RedisWebManager::Data.new
data.perform

If you are using a system to run background tasks in your application (like Sidekiq, Sucker Punch or ActiveJob), you can write your own background task to update the dashboard statistics.

Sidekiq exemple:

class DashboardWorker
  include Sidekiq::Worker

  def perform
    data = RedisWebManager::Data.new
    data.perform
  end
end

Sucker Punch exemple:

class DashboardJob
  include SuckerPunch::Job

  def perform
    data = RedisWebManager::Data.new
    data.perform
  end
end

Todo

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/OpenGems/redis_web_manager . This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License .


以上所述就是小编给大家介绍的《A web interface for managing your Redis instance》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

解密搜索引擎技术实战

解密搜索引擎技术实战

罗刚 / 2011-6 / 69.80元

《解密搜索引擎技术实战-Lucene&Java精华版(附盘)》,本书主要包括总体介绍部分、爬虫部分、自然语言处理部分、全文检索部分以及相关案例分析。爬虫部分介绍了网页遍历方法和如何实现增量抓取,并介绍了从网页等各种格式的文档中提取主要内容的方法。自然语言处理部分从统计机器学习的原理出发,包括了中文分词与词性标注的理论与实现以及在搜索引擎中的实用等细节,同时对文档排重、文本分类、自动聚类、句法分析树......一起来看看 《解密搜索引擎技术实战》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

URL 编码/解码
URL 编码/解码

URL 编码/解码