Redis (nosql db) is:
- under active development
- a manageable size
- portable and robust
- has no external dependancies
- very well written, understandable code
Related Contents:
- Is C open source?
- What does “static” mean in C?
- How do I determine the size of my array in C?
- Why should we typedef a struct so often in C?
- typedef fixed length array
- What are the most common naming conventions in C?
- What is the format specifier for unsigned short int?
- Can’t understand this way to calculate the square of a number
- How does this piece of code determine array size without using sizeof( )?
- C programming in Visual Studio
- Are there any open source C libraries with common data structures? [closed]
- How can I compile without warnings being treated as errors?
- How can I tell if a library was compiled with -g?
- Undefined reference to `sin` [duplicate]
- What is a trampoline function?
- How can I multiply and divide using only bit shifting and adding?
- malloc for struct and pointer in C
- Difference between surface and texture (SDL / general)
- Can multithreading be implemented on a single processor system?
- How can I convert a binary file to the text declaring a C/C++ array with that content?
- C char array initialization: what happens if there are less characters in the string literal than the array size?
- Determine size of dynamically allocated memory in C
- How to Declare a 32-bit Integer in C
- “int *nums = {5, 2, 1, 4}” causes a segmentation fault
- What if I don’t write default in switch case?
- Do I need to keep a file open after calling mmap on it?
- Where to find “gmp.h”?
- Why is memory allocation on heap MUCH slower than on stack?
- What does “[*]” (star modifier) mean in C? [duplicate]
- CMAKE – How to properly copy static library’s header file into /usr/include?
- Time in milliseconds in C
- Using if (!!(expr)) instead of if (expr)
- find if 4 points on a plane form a rectangle?
- How to replicate vector in c?
- Violating of strict-aliasing in C, even without any casting?
- How do I print uint32_t and uint16_t variables’ value?
- How to read, understand, analyze, and debug a Linux kernel panic?
- Pass an array to a function by value
- What is the ‘asmlinkage’ modifier meant for?
- __attribute__((const)) vs __attribute__((pure)) in GNU C
- Increasing camera capture resolution in OpenCV
- Can the linker inline functions?
- What does =+ (equals-plus) mean in C?
- Why is a while loop needed around pthread wait conditions?
- Sockets – How to find out what port and address I’m assigned
- Reading and writing to serial port in C on Linux
- How can I get argv[] as int?
- Check if user is root in C?
- Find the highest order bit in C [duplicate]
- Why does NSError need double indirection? (pointer to a pointer)