update readme, disable permission test

This commit is contained in:
Henry Rawas
2013-05-06 14:50:21 -07:00
committed by JonathanPickett
parent 3a5ee522b5
commit c84e5ba84d
2 changed files with 3 additions and 1 deletions

View File

@@ -2,7 +2,7 @@ Redis on Windows 2.6 prototype
===
## What's new in this release
- This is a port for Windows based on Redis 2.6.8.
- This is a port for Windows based on Redis 2.6. The latest version merged in 2.6.12.
- The port is similar to the port of Redis 2.4, including the same background saving technology.
- There is support for x64 version as well as 32 bit versions.
- For the 64 bit version, there is a limit of 2^32 objects in a structure, and a max length of 2^32 for any object

View File

@@ -50,6 +50,7 @@ proc start_server_and_kill_it {overrides code} {
kill_server $srv
}
if { $::tcl_platform(platform) != "windows" } {
# Make the RDB file unreadable
file attributes [file join $server_path dump.rdb] -permissions 0222
@@ -96,3 +97,4 @@ start_server_and_kill_it [list "dir" $server_path] {
}
}
}
}