Binary files contain binary data. Learn to store binary data in redis.
Image files are binary files. Learn to store binary data in redis.
Designing database tables for storing analytic’s data depends on what kind of data you are storing. All analytics platform are not same. Some track number of users and their locations while some also store information like browser used and time user stayed on the website. In this article I will show you the database design […]
Redis is a in-memory storage system. Primary memory is volatile i.e., data is lost when we restart our computer. Some people want to use redis just like an DBMS which keeps its data stored permanently. Redis does provide some mechanism to make the data persistance(permanent). There are three different ways to make Redis persistant: RDB, […]
Redis is a in-memory key-value storage system. Primary Memory storage size tends to be much smaller than hard disk storage size. So its never a good idea to populate primary memory with binary data/files as you will soon run out of memory and cause redis/other applications unexpected shutdowns. But still if you want to store […]
Websites grows in regular basics. As the website data increases the DBMS is needs to be scaled for backup and performance. In this post I will explain how MySQL looks in large websites. Database Backup Backup prevents loss of data due to failure in hard disk. Some techniques used by small websites for database backup […]
Storing chat messages and retrieving those messages at a very fast rate is much needed for an chat app. Developers spend days to decide which DBMS to choose and how to design tables for storing messages. Sometimes they endup with difficult and bad designs. Most bad table designs require a lot of sorting. After doing […]
Most Commented