问题标签 [redis-server]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
windows - Redis的大文件不会删除?
我正在使用 Redis-server for windows ( 2.8.4 - MSOpenTech ) / windows 8 64bit。
它工作得很好,但即使在我运行之后:
我看到了:(这是我的问题)
问题 :
— 我不是刚刚告诉它擦除所有 DB 吗?那么为什么那些 2/3 的大文件仍然存在呢?我怎样才能完全删除这些文件?(无需重新生成)
注意似乎它正在删除键而没有释放占用的空间。如果是这样,我怎样才能释放这个未使用的空间?
redis - redis 服务器上的远程连接
我在我的共享托管服务器上设置了 redis 服务器,并且可以使用命令行或 predis 轻松启动和访问 redis。当我在一台机器上和平地运行和处理redis时,我使用另一个ip打开了同一个网页,它说连接拒绝redis。看起来redis客户端只在我从同一个ip发出请求时才建立连接,我以前用它来启动服务器。我尝试了不同的绑定配置,但没有任何效果,例如:绑定 127.0.0.1 例如:绑定 0.0.0.0
我想知道,如果我做错了什么或防火墙阻止它建立连接。
redis - 使用 Redis 作为同一服务器上多个应用程序的缓存存储
我想将 Redis 用作同一物理机上多个应用程序的缓存存储。
我知道至少有两种方法:
- 通过在不同端口上运行多个 Redis 实例;
- 通过为不同的应用程序使用不同的 Redis 数据库。
但我不知道哪个更适合我。
这些方法的优点和缺点是什么?
有没有更好的方法呢?
redis - 在 Ubuntu Server 14.04 中配置 Redis 集群
我已经安装了redis-server
,apt-get install redis-server
一切都很顺利。
现在我正在尝试在集群模式下配置它。问题是在这里提供的教程http://redis.io/topics/cluster-tutorial他们使用了一个脚本redis-trib.rb
,我在我的系统中找不到它。
你能告诉我如何在没有该脚本的情况下将我的 Redis 配置为在集群模式下运行?
我想有两个主人的设置,每个主人在不同的机器上。
非常感谢。
redis - How to start redis with specific .rdb file?
I had redis installed without password. Then I tried to put password without success and decided to delete all related to redis from my server. After that, I've installed redis once again and set a password successfully. The problem is that now is creating a new database and not reading from the old one. I am running the same command from sabe directory. $~/ redis-server
I've also tried to check if is generating a new dump.rdb file with:
But is only finding my correct dump.rdb
file that I'd like to use.
Is there a way to import my last database to this new one? Or, Is there a way to start my server using the correct dump.rdb
file?
linux - 如何在与 ubuntu 中默认端口 6379 不同的端口上启动 redis-server
如何在与 Ubunturedis-server
中的默认端口不同的端口上启动?6379
我使用以下步骤安装redis:
我安装了它,但我不知道如何redis-server
在与默认端口不同的端口上启动6379
。那么请告诉我将默认端口更改为不同端口的步骤?
linux - linux中redis进程的两个实例
我总是面临在我的登录名和根目录中运行两个 redis 实例的问题,如下所示
因此,如果我必须终止服务器,我将不得不终止两个进程实例,即从我的登录名中终止,然后以 root 身份终止。那么有人可以首先为什么会发生这种情况?
redis - Start redis server using gulp
Most of our front end development workflow is automated using gulp tasks. We're wondering if there is a way to create a gulp task for starting redis.
Currently we're using redis-server which we launch with redis-server
. We'd like to be able do something like: gulp redis
. What would this entail?
redis - 无法编译 64 位 redis-server
我正在尝试编译 Redis 的最新稳定 (2.8.19) 版本。构建以及所有测试都成功,但意外地服务器在 32 位架构上运行。
日志条目:
Redis-cliINFO
显示 arch_bits:32。以前的实例(2.4.6 版)在 arch_bits 64 上运行良好,但我不知道它是通过哪种方式安装的。
操作系统版本信息:
有什么方法可以解决这个问题并将最新的 redis 运行为 64 位?
UPD
尽管有上述命令输出,但dpkg --print-architecture
返回i386
和系统中的所有包都是all
or i386
。只有作为包安装的 redis-server 2.4.* 是奇怪的ia64
。
在这种情况下我能做什么?服务器是很久以前由另一个人设置的,我在 Unix 中仍然是新手。
redis - redis 位计数示例不起作用
我在玩 redis 并尝试了 bitcount 示例:http ://redis.io/commands/bitcount 。
我的redis版本如下:
我通过网站验证,3.0.1 是最新的稳定版本。这种安排出了什么问题?