├── var └── .gitignore ├── .gitignore ├── cygwin1.dll ├── cyggcc_s-1.dll ├── cygstdc++-6.dll ├── ssdb-server-1.9.4.exe ├── ssdb-server-1.8.1-native.exe ├── ssdb-server-1.8.1-native_x64.exe ├── README.md └── ssdb.conf /var/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /cygwin1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideawu/ssdb-bin/HEAD/cygwin1.dll -------------------------------------------------------------------------------- /cyggcc_s-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideawu/ssdb-bin/HEAD/cyggcc_s-1.dll -------------------------------------------------------------------------------- /cygstdc++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideawu/ssdb-bin/HEAD/cygstdc++-6.dll -------------------------------------------------------------------------------- /ssdb-server-1.9.4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideawu/ssdb-bin/HEAD/ssdb-server-1.9.4.exe -------------------------------------------------------------------------------- /ssdb-server-1.8.1-native.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideawu/ssdb-bin/HEAD/ssdb-server-1.8.1-native.exe -------------------------------------------------------------------------------- /ssdb-server-1.8.1-native_x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideawu/ssdb-bin/HEAD/ssdb-server-1.8.1-native_x64.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ssdb-bin 2 | ======== 3 | 4 | SSDB pre-compiled executable binary for Windows. 5 | 6 | __SSDB for win is for development only, do not use it for production environment!__ 7 | 8 | # Installation and Setup 9 | 10 | 1. Download ssdb-server.exe and \*.dll files from https://github.com/ideawu/ssdb-bin 11 | 2. Download ssdb.conf from https://github.com/ideawu/ssdb 12 | 3. Run cmd.exe from Start menu 13 | 4. Go into the folder where ssdb-server.exe resides in 14 | 5. Run ssdb-server.exe ssdb.conf 15 | 16 | Now the ssdb-server is started on Windows, connect to it with PHP, Python, Java, etc... 17 | 18 | # SSDB on Windows without cygwin 19 | 20 | Maintained by [@RelicOfTesla](https://github.com/RelicOfTesla), this version does not rely on cygwin, so it is fast, and is said to be ready for production on Windows. 21 | 22 | https://github.com/RelicOfTesla/ssdb 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /ssdb.conf: -------------------------------------------------------------------------------- 1 | # ssdb-server config 2 | # MUST indent by TAB! 3 | 4 | # relative to path of this file, directory must exists 5 | work_dir = ./var 6 | pidfile = ./var/ssdb.pid 7 | 8 | server: 9 | ip: 127.0.0.1 10 | port: 8888 11 | # bind to public ip 12 | #ip: 0.0.0.0 13 | # format: allow|deny: all|ip_prefix 14 | # multiple allows or denys is supported 15 | #deny: all 16 | #allow: 127.0.0.1 17 | #allow: 192.168 18 | 19 | replication: 20 | slaveof: 21 | # to identify a master even if it moved(ip, port changed) 22 | # if set to empty or not defined, ip:port will be used. 23 | #id: svc_2 24 | # sync|mirror, default is sync 25 | #type: sync 26 | #ip: 127.0.0.1 27 | #port: 8889 28 | 29 | logger: 30 | level: debug 31 | output: log.txt 32 | rotate: 33 | size: 1000000000 34 | 35 | leveldb: 36 | # in MB 37 | cache_size: 500 38 | # in KB 39 | block_size: 32 40 | # in MB 41 | write_buffer_size: 64 42 | # in MB 43 | compaction_speed: 1000 44 | # yes|no 45 | compression: no 46 | 47 | 48 | --------------------------------------------------------------------------------