Close

Redis

Redis is an in-memory data structure store used as a distributed, in-memory key-value database, cache, and message broker, with optional durability.

Diving into Python Data Types

Diving into Python Data Types

Understanding data types is fundamental to manipulating and storing data efficiently in programming. Python, a powerful and versatile language, offers a variety of built-in data types to facilitate various operations. Python’s data types are the classifications of data items. They represent the value of what operations can be performed on […]

Devamını Oku

Raft: A Consensus Algorithm for Distributed Systems

Raft: A Consensus Algorithm for Distributed Systems

A creative look at how Raft ensures that all nodes in a distributed system agree on the same state of the world. In distributed systems, all nodes must agree on the same state of the world. This is because if nodes disagree, it can lead to problems such as data […]

Devamını Oku

Using Caching to Speed up Your Python Code

Using Caching to Speed up Your Python Code

Caching is a technique that can be used to store frequently accessed data in memory. This can improve the performance of your Python code by reducing the number of times that data needs to be retrieved from a slower storage medium, such as a database or a file system. Caching […]

Devamını Oku

MongoDB In 30 Minutes

MongoDB

We are diving into the MongoDB NoSQL database and looking at the fundamentals and the syntax to create, read, update and delete documents/data MongoDB is a popular, open-source NoSQL database. NoSQL databases store data in a non-relational format, unlike traditional relational databases (SQL) that store data in tables with rows […]

Devamını Oku

Functional programming is finally going mainstream.

Functional programming is finally going mainstream.

Functional programming is finally gaining more traction and becoming a mainstream approach in software development. It is a programming paradigm that emphasizes writing programs using “pure functions”, which are stateless functions that always return the same value when given the same input and produce no side effects. In functional programming, […]

Devamını Oku

MSVCP140.dll Is Missing

Microsoft Visual C++

Sabit bir windows bilgisayarım yok. Kendi Macbook’ umda bi şekilde çözüyorum. Virtual machine olmayan bir bilgisayar gerekince, en yakındaki bilgisayara bulaşıyorum ve her seferinde ayrı bir sorun çıkıyor. 32 bit windows 7 yüklü bir bilgisayara program yüklerken “MSVCP140.dll is missing” hatası aldım. Bu kütüphane Microsoft Visual C++ paketine aittir. Runtime […]

Devamını Oku