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...
Part 1 The concept of this lab was to get from http://www.gnu.org/software/ and download the software and build it on Unix/Linux or any open Secure Shell. Part 2 The second part of the lab was to build and test glibc. After that compilation was successful.
x86_64 intro and assembly language program With syscall and without printf function creates more work for cpu The syscall invokes one or more registers than write command There is 2 assembly codes format: NASM and GAS GAS it's a GNU assembler syntax it works from left to right NASM it works from right to left it's a lot similar to Aarch64 In order to have numbers without 0's in first digit column in first ten numbers is "cmp", "jne" commands and a label. AARCH64 intro and assembly language program It's similar to x86_64 It uses NASM which reads the code from right to left Cannot write to memory from address
Comments
Post a Comment