Fedora · Advantages o Uses Security-Enhanced Linux by default o Comes with wide range of software like LibreOffice and Firefox and additional software if needed · Disadvantages o When it comes to additional software, the user needs to install the open source to Fedora in order to use it o Some of these software needs to be open source and does not violate the US law Mandriva Linux · Advantages o Has Mandriva Control Center, some of setting configuration has been done for ease o It uses package called urpmi it’s similar to yum or dnf from Fedora in which installs packages that is needed to install other packages · Disadvantages o Older versions of Mandriva supported KDE but othe...
Redis notable points: · In-memory-based key-value store · Faster than memory-based database (performance wise) · it processes the data into memory · repository provides primitive types · data types like String, Set, Hash, List, Basic Functions (Search Add Delete of data) · Hiredis - APIs that manipulates Redis as C client Benchmark source code const int N = 1000000; int main() { printf("Connecting...\n"); redisContext *redis = redisConnect("localhost", 6379); clock_t start, end; float ftime; if (redis->err) { puts(redi...
Comments
Post a Comment