djveremix / redis

Automatically exported from code.google.com/p/redis
0 stars 0 forks source link

Does "multi" work on windows? #245

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. compile (1.2.6) in windows (using cygwin)
2. run both redis-server and redis-cli
3. attempt the MULTI command from redis-cli

What is the expected output? What do you see instead?
expecting the OK result; instead I get "(error) ERR unknown command 
'multi'"

What version of the product are you using? On what operating system?
1.2.6 (compiled in 32-bit) on windows 7 (64-bit)

Please provide any additional information below.

Original issue reported on code.google.com by boud...@gmail.com on 19 May 2010 at 9:48

GoogleCodeExporter commented 9 years ago
Hi, The 1.2.6 windows version of Redis supports the same operations as the 
1.2.6 *NIX version of Redis. Unfortunately 
MULTI/EXEC is only available on the development branch.

Although its easy enough to build yourself, I host development builds of redis 
on windows (using Cygwin) here:
http://code.google.com/p/servicestack/wiki/RedisWindowsDownload

I maintain a C# client that supports MULTI/EXEC and have tests that run 
successfully on dev versions of redis-server 
on both windows and *NIX (as effectively there the same so no difference). I 
have an example usage of MULTI/EXEC 
here:
http://code.google.com/p/servicestack/wiki/RedisTransactions

- Demis

Original comment by demis.be...@gmail.com on 19 May 2010 at 9:59

GoogleCodeExporter commented 9 years ago

Original comment by anti...@gmail.com on 30 Aug 2010 at 1:57