Best unofficial Apache Server developers community |
| |||||
| Aug 25, 2010 | |||||
|
Redis |
|
||||
| Tags: | |||||
Similar Threads
Re: Issue 162 in redis: need a redis-cli command to close all connection
Comment #1 on issue 162 by antirez: need a redis-cli command to close all connection http://code.google.com/p/redis/issues/detail?id=162 can't find a valid use case for this ;) Care to explain? Cheers, Salvatore
Re: Issue 132 in redis: Comment at the top of utils/redis-copy.rb applies to redis-sha1.rb
Updates: Status: Done Comment #1 on issue 132 by antirez: Comment at the top of utils/redis-copy.rb applies to redis-sha1.rb http://code.google.com/p/redis/issues/detail?id=132 done, thanks
Issue 297 in redis: WATCH command doesn't work
Status: New Owner: ---- Labels: Type-Defect Priority-Medium New issue 297 by theturtle32: WATCH command doesn't work http://code.google.com/p/redis/issues/detail?id=297 What steps will reproduce the problem? turtlelap:redis-2.0.0-rc4 turtle$ ./redis-cli redis> set foo bar OK redis> get foo "bar" redis> watch foo (error) ERR unknown command 'watch' redis> What version of the product are you using? On what operating system? Redis 2.0.0-rc4, Mac OS X 10.6.4
Re: Issue 99 in redis: More meta-data via the INFO command
Updates: Status: Accepted Comment #4 on issue 99 by antirez: [FEATURE REQUEST] More meta-data via the INFO command http://code.google.com/p/redis/issues/detail?id=99 I like at least a few of the above proposals, btw there is already a command to reset the stats of INFO, that is, CONFIG RESETSTAT.
Re: Issue 100 in redis: Command to show Loaded Configuration
Updates: Status: Verified Comment #2 on issue 100 by antirez: Command to show Loaded Configuration http://code.google.com/p/redis/issues/detail?id=100 check the CONFIG command, it is able to do this and even more (especially in Redis master).
Re: Issue 167 in redis: Dissapointing responsiveness of Redis when using append only file mode
Comment #2 on issue 167 by antirez: Dissapointing responsiveness of Redis when using append only file mode http://code.google.com/p/redis/issues/detail?id=167 updates about this: 1) With the current Linux kernel it is not possible to flush on a different thread, as write(2) will block anyway in the main thread. This sucks but I don't think this is going to get fixed in little time. 2) We have now in Redis master an option so that fsync(2) is not called when there is a background saving/log-rewrite operation in progress. It's a trick... but works. 3) All this is highly dependent on the file system used and the mount options. 4) "fsync none" is a trivial way to completely fix this problem but the drawback is that up to 30 seconds of logs can be lost. 5) fsync always is now optimized, it is still very very slow but much faster than before. I'm leaving this open as it's an open problem but I don't think there are very good way to fix this at the moment, still with the latest changes we mitigated the problem enough. Currently when very low latency is required a two box setup with a saving slave may be the best option.
Issue 300 in redis: redis-check-dump shows an overflowed value with huge .rdb.
Status: New Owner: ---- Labels: Type-Defect Priority-Medium New issue 300 by hatemogi: redis-check-dump shows an overflowed value with huge .rdb. http://code.google.com/p/redis/issues/detail?id=300 What steps will reproduce the problem? 1. make a huge dump.rdb file. 2. run redis-check-dump with that file. 3. I see an overflowed value in the result. What is the expected output? What do you see instead? I see below $ ls -la data/dump.rdb -rw-rw-r-- 1 dante dante 11853271020 Aug 5 15:24 data/dump.rdb $ ./redis-check-dump data/dump.rdb ==== Processed 9971202 valid opcodes (in -1031630877 bytes)
Re: Issue 106 in redis: Incorrect parsing of redis.conf save parameters
Updates: Status: Accepted Comment #1 on issue 106 by antirez: Incorrect parsing of redis.conf save parameters http://code.google.com/p/redis/issues/detail?id=106 yep not cool at all, accepted. I've some plan to rewrite most of the configuration file parsers and for sure sanity checks including parameters types and limits will be supported as well.
Re: Issue 97 in redis: Ubuntu 9.10 /etc/init.d/redis-server [stop|restart] does not force a sync to
Updates: Status: Verified Comment #4 on issue 97 by antirez: Ubuntu 9.10 /etc/init.d/redis-server [stop|restart] does not force a sync to disk http://code.google.com/p/redis/issues/detail?id=97 this is now fixed (as Chris suggested)
Issue 312 in redis: redis-server hanging when being populated with keys-values w/expire with VM enab
Status: New Owner: ---- Labels: Type-Defect Priority-Medium New issue 312 by themig.adx: redis-server hanging when being populated with keys-values w/expire with VM enabled http://code.google.com/p/redis/issues/detail?id=312 What steps will reproduce the problem? 1. Start redis-server with vm-enabled yes vm-max-memory 2147483648 vm-page-size 32 vm-pages 134217728 etc 2. From a standalone executable issue commands in a loop that will do the following: getset random_key random_value expire random_key 2592000 3. When the server gets across boundary of its virtual machine (2 G)it stops responding to cli and to "redis-stat vmstat" with about 48% CPU busy on our LINUX system, probably falling into a loopwhole of VM swapping. What is the expected output? What do you see instead? What version of the product are you using? On what operating system? Please provide any additional information below.
Re: Issue 179 in redis: redis-cli fails after error in multi/exec
Updates: Status: Verified Comment #1 on issue 179 by antirez: redis-cli fails after error in multi/exec http://code.google.com/p/redis/issues/detail?id=179 Fixed in redis master, Cheers, Salvatore
Re: Issue 168 in redis: Feature Request] redis-cli needs a auth-option
Updates: Status: Verified Comment #3 on issue 168 by antirez: Feature Request] redis-cli needs a auth-option http://code.google.com/p/redis/issues/detail?id=168 This was fixed indeed (see the -a option of redis-cli)
Re: Issue 137 in redis: redis.php: rpop and lpop method should not have $value parameter
Updates: Status: WontFix Comment #1 on issue 137 by antirez: redis.php: rpop and lpop method should not have $value parameter http://code.google.com/p/redis/issues/detail?id=137 please use Predis or Rediska PHP Redis libs! The old PHP lib is deprecated. Cheers, Salvatore
Issue 296 in redis: redis-cli does not handle EOF in monitor mode correctly
Status: New Owner: ---- Labels: Type-Defect Priority-Medium New issue 296 by bjarni.runar: redis-cli does not handle EOF in monitor mode correctly http://code.google.com/p/redis/issues/detail?id=296 What steps will reproduce the problem? 1. run redis-cli in monitor mode 2. killall redis-server What is the expected output? What do you see instead? redis-cli should exit, as the server is no longer running. It does not, instead it spews infinite newlines. What version of the product are you using? On what operating system? redis 2.0.0rc3 Please provide any additional information below. Patch attached, fixes the issue. Attachments: redis-cli-newlines.patch 798 bytes
Re: Issue 111 in redis: read-only redis.conf option
Comment #1 on issue 111 by antirez: [FEATURE REQUEST] read-only redis.conf option http://code.google.com/p/redis/issues/detail?id=111 not a bad idea indeed... I'll think a bit more about it but sounds cool
Issue 304 in redis: SET command overwrites complex data structures (sets, hashes ...)
Status: New Owner: ---- Labels: Type-Defect Priority-Medium New issue 304 by tim.lossen.de: SET command overwrites complex data structures (sets, hashes ...) http://code.google.com/p/redis/issues/detail?id=304 What steps will reproduce the problem? redis> sadd foo 1 (integer) 1 redis> smembers foo 1. "1" redis> set foo bar What is the expected output? (error) ERR Operation against a key holding the wrong kind of value What do you see instead? OK What version of the product are you using? On what operating system? version 2.1.2 on os x (snow leopard) Please provide any additional information below. i find this behaviour inconsistent, as calling for example hash commands on a key holding a string always fail. i was expecting to have to delete the key to switch its type to string.
Re: Issue 145 in redis: redis-1.2.0 Makefile fixes
Updates: Status: WontFix Comment #2 on issue 145 by antirez: [patch] redis-1.2.0 Makefile fixes http://code.google.com/p/redis/issues/detail?id=145 (No comment was entered for this change.)
Issue 302 in redis: redis-cli cause a seg fault on netbsd X64
Status: New Owner: ---- Labels: Type-Defect Priority-Medium New issue 302 by charpentier.claude: redis-cli cause a seg fault on netbsd X64 http://code.google.com/p/redis/issues/detail?id=302 What steps will reproduce the problem? 1. launch redis-cli compiled on NetBSD X64 What is the expected output? What do you see instead? see attached files What version of the product are you using? On what operating system? I use redis 1.2.6 on NetBSD amd64 but works fine on i386 zat Attachments: gistd2bd3b523a52d441132a-22c8b36a5c747b3f08eef4b2767193b9faa559bc.tar.gz 849 bytes
Issue 309 in redis: would redis support plugins?
Status: New Owner: ---- Labels: Type-Defect Priority-Medium New issue 309 by everw### @gmail.com: would redis support plugins? http://code.google.com/p/redis/issues/detail?id=309 Redis is an outstanding storage solution. High performance, atomic operations, data structures, replication, etc. But it does not support transactions very well. The MULTI/EXEC mechanism is too simple. It cannot handle complex situations. Data structures support is somewhat limited. I think, supporting complex operations and data structures with plugins may be a better way, like stored procedures in RDB. Actually, I'm working on this feature now. Any comments?
Re: Issue 147 in redis: redis-cli should be able to connect to slave
Updates: Status: Invalid Comment #4 on issue 147 by antirez: redis-cli should be able to connect to slave http://code.google.com/p/redis/issues/detail?id=147 (No comment was entered for this change.)
Apache Crashes after installing PHP 5.2
Jun 30, 2010 Excel COM with insert query crashes Apache Jun 2, 2010 A Problem in wget command... Jul 14, 2010 what is the apache command to set a parked domain? Jun 5, 2010 Kerberos working on the command line, not via apache Jun 4, 2010 C++ class memory allocation error (getting Command terminated) May 30, 2010 URL Re-writing Issue Jul 1, 2010 .htaccess redirect issue Jun 30, 2010 apache router issue? May 31, 2010 apache routing issue? May 31, 2010 | |||||