parottasalna.hashnode.devRedis : Read Through CacheIts an Application level caching, where the application reads the data from cache. If the data not present in the cache it will read from database and updates the cache and sends the result to the application. Steps: The Application (fastapi) check...Jun 3, 2024·2 min read
parottasalna.hashnode.devBenchmarking UUID vs ULID for DB indexingIn DB, for unique identifiers we are using UUID (Universally Unique Identifier) and ULID (Universally Unique Lexicographically Sortable Identifier). TL;DR CODE:https://github.com/syedjaferk/benchmarking_uuid_vs_ulid There was no big difference betwe...Jun 3, 2024·4 min read
parottasalna.hashnode.devRedis : Cache Aside PatternIts an Application level caching, where the application checks whether the data is present in the cache (In our case redis). If data is present it returns the data. Else checks from the database and stores it in Cache and then returns the data to cli...Jun 1, 2024·2 min read
parottasalna.hashnode.devTop 15 WGET commands you need to know !WGET cookbook PDF link : Download Here wget is a powerful command-line utility for downloading files from the web. It supports various protocols such as HTTP, HTTPS, FTP, and FTPS. Basic File Download This command downloads the file named file.zip...Jan 21, 2024·4 min read
parottasalna.hashnode.devHow to download an entire website with a single command ?wget is a powerful command-line utility for downloading files from the web. It supports various protocols such as HTTP, HTTPS, FTP, and FTPS. For Windows: https://gnuwin32.sourceforge.net/packages/wget.htm For Linux: sudo apt-get install wget It will...Jan 21, 2024·2 min read