Redis Client Install Mac

What is FastoRedis?

Redis Client Install Mac

However Redis database usually contains a lot of keys (millions or even billions) and using list presentation is not convenient (or is not possible). DBeaver supports hierarchy presentation of keys. Internally Redis doesn’t support hierarchies but on application level key names may be divided on groups using some character (e.g. Installing Redis using Homebrew on Mac Homebrew is a package manager for Mac OS similar to apt-get in Linux for installing any software. If you don't have it installed on your Mac then you can follow this guide to install Homebrew. Once, installed you can execute below command on the termonal.

FastoRedis (fork of FastoNoSQL) - is a cross-platform open source Redis management tool (i.e. Admin GUI). It put the same engine that powers Redis's redis-cli shell. Everything you can write in redis-cli shell — you can write in Fastoredis! Our program works on the most amount of Linux systems, also on Windows, Mac OS X, FreeBSD and Android platforms.

Main big advantages of FastoRedis:

  • Open source
  • Cross-platform
  • Flexible and extending for future databases
  • Simple code
  • Great solutions
  • Money back guarantee.

We are waiting for your feedback! Please write any issues and proposals to GitHub Issues.

Features

Full Power of Redis shell FastoRedis embeds the same redis-cli engine. It means that you can reuse your main skills of redis-cli shell in FastoRedis This program provides you with syntax highlighting, autocompletion, different view modes (text, tree, table) and other. With excellent power comes great responsibility. FastoRedis won’t stop you from executing 'undesired' code. Be attentive, as you do with redis-cli shell!

Multiple Shells

You can open as many shells as you need. Every tab in FastoRedis - is a Redis shell, fully divided from each other. Have many opened shells for single Redis server, or many shells for many different servers.

Autocompletion

FastoRedis supply you with autocompletion for all Redis commands. To assist FastoRedis autocompletion - execute your code.

Redis unix sockets

Redis have feature called Redis Unix sockets, and your server never will be visible in network, this functionality something like embedded database which works only on local machine.

Redis Labs cloud

Redis Labs is the open source home and commercial provider of Redis, we support it also.

Redis Cluster support

Redis Cluster provides a way to run a Redis installation where data is automatically sharded across multiple Redis nodes. FastoRedis is able to work with Redis Cluster, we support discovery functionality and you can work with cluster as one server.

Mac install redis cli

Redis Sentinel support

Redis Sentinel provides high availability for Redis. In practical terms this means that using Sentinel you can create a Redis deployment that resists without human intervention to certain kind of failures. Discovery Redis Sentinel it is supper feature of FastoRedis.

Access your server using SSH protocol

Access your server using SSH protocol You are able to connect to server via SSH tunnel. We support two methods of authentication: with password and with private key.

Access your TLS/SSL servers like Microsoft Azure

If your have secure redis server like Microsoft Azure you also can use FastoRedis.

TTL, Binary keys, Redis modules, UTF-8 Encoding, etc...

Mac

Many Redis GUI solutions have cool features but some features have only FastoRedis. For example:

  • Binary keys/value handling
  • TTL keys which will removed from tree when time expire time comming
  • Redis Modules
  • Docker via forwarding ports or X server
  • UTF-8 Encoding
  • Console commands influence to the tree without reloading
  • And many, many other cool features which you can find only in FastoRedis.

Graphics of history

Desktop Managers makes working with the database more user-friendly. If you want to see the work history of your server, you can check 'Logging enable' on connection dialog window. And every minute FastoRedis executes redis info command, and saves result.

Our PRO version statistics:

14763

Registered users

511

Redis Client Install Mac

Banned users

Installing redis under Linux
Introduction and use of redis
Introduction and installation of redis framework (MAC and windows)

Redis installation and use

Redis introduction

Install

Our daily development, data need to be persistent storage, common persistent storage has many kinds, such as database, file, computer memory, and even cloud server are persistent storage of data. As far as database is concerned, it is often divided into relational database and non relational database. In our project, the relational database we use is mysql, the data stored in the relational database is mainly some core business data; in addition, in our project, there are some data that are unlikely to change, such as the regional data in the application, city list, or the statistics of the increase in the number of applications every day, and so on. These data are very important for us The requirement of timeliness is not particularly high. Therefore, in order to improve the storage efficiency of the application and improve the performance of the program, we will store some data that do not change obviously and often in the redis database.

So why can storage efficiency be improved by putting it in redis database? Redis database is a kind of non relational database, and its storage form is key value format. There are many ways to support it, such as memory, disk, file and so on. The characteristic of key value database is that it can locate the corresponding value directly according to the key. Therefore, compared with the table structure query method of relational database, the non relational database has very high execution efficiency, and we usually store the data in memory, and the speed of memory reading and writing is the fastest. Therefore, it can meet our needs of high traffic and high concurrency.

Redis database installation

  • MAC system
    Install brew first

Redis Desktop Client For Mac

1.brew install redis
2. Set redis server as an environment variable
vim .bash_profile
alias redis=/usr/local/Cellar/redis/5.0.0/bin/redis-server
Note: modify the configuration file and path to your own configuration
3. Execute redis and start redis service

  • Windows system

Free Redis Client

1. Download redis:https://github.com/MicrosoftArchive/redis/releases (or see the compressed package file)
2. The downloaded files are MSI files that can be installed and run directly
3. Click MSI file, and the steps are as follows:
Waiting for installation

1) First, find the installation directory where you want to install redis
2) Open the CMD terminal and enter the redis installation directory:
3) Execute redis- cli.exe The documents are as follows:
The above screen appears, indicating that the installation is successful.

  • Enter the redis terminal:redis-cli

This work adoptsCC agreementReprint must indicate the author and the link of this article