Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use fflush() before fsync() in rio.c. | antirez | 2014-01-22 | 1 | -0/+1 |
| | | | | | | | | | | | Incremental flushing in rio.c is only used to avoid huge kernel buffers synched to slow disks creating big latency spikes, so this fix has no durability implications, however it is certainly more correct to make sure that the FILE buffers are flushed to the kernel before calling fsync on the file descriptor. Thanks to Li Shao Kai for reporting this issue in the Redis mailing list. | ||||
* | Chunked loading of RDB to prevent redis from stalling reading very large keys. | yoav | 2013-07-16 | 1 | -0/+4 |
| | |||||
* | rio.c: added ability to fdatasync() from time to time while writing. | antirez | 2013-04-24 | 1 | -1/+30 |
| | |||||
* | Introduced the Build ID in INFO and --version output. | antirez | 2012-11-29 | 1 | -2/+1 |
| | | | | | | | The idea is to be able to identify a build in a unique way, so for instance after a bug report we can recognize that the build is the one of a popular Linux distribution and perform the debugging in the same environment. | ||||
* | BSD license added to every C source and header file. | antirez | 2012-11-08 | 1 | -3/+36 |
| | |||||
* | Fixed compilation of new rio.c changes (typos and so forth.) | antirez | 2012-04-09 | 1 | -1/+3 |
| | |||||
* | Add checksum computation to rio.c | antirez | 2012-04-09 | 1 | -0/+10 |
| | |||||
* | rio.c file somewhat documented so that the casual reader can understand ↵ | antirez | 2012-04-09 | 1 | -0/+18 |
| | | | | what's going on without reading the code. | ||||
* | Fixed a few warnings compiling on Linux. | antirez | 2011-10-23 | 1 | -0/+2 |
| | |||||
* | rioInitWithFile nad rioInitWithBuffer functions now take a rio structure ↵ | antirez | 2011-09-22 | 1 | -9/+8 |
| | | | | pointer to avoid copying a structure to return value to the caller. | ||||
* | make sure to return just 1 for rio.c write when the target is a buffer, as ↵ | antirez | 2011-09-22 | 1 | -2/+2 |
| | | | | we do when the target is a file. | ||||
* | Abstract file/buffer I/O to support in-memory serialization | Pieter Noordhuis | 2011-05-13 | 1 | -0/+106 |