Using Django Template Tags in HTML Scripts
I wondered how to use the Django setting variables inside a <script> tag in an HTML template in one of the projects. In this post,… Read More »Using Django Template Tags in HTML Scripts
I wondered how to use the Django setting variables inside a <script> tag in an HTML template in one of the projects. In this post,… Read More »Using Django Template Tags in HTML Scripts
The pointers in the Go language are like in the C language. A pointer holds a memory address for a value. * operator is used… Read More »Go Pointers
Like in Python, the functions that can take each time a variable number of parameters are known as variadic functions. To declare a variadic function… Read More »Go Variadic Functions
I explained what is a Filter in Apache Solr, and in this article, we will deep dive into the filters. During the filtering phase in… Read More »Apache Solr Filters
Apache Solr provides a range of features for indexing, searching, and managing large volumes of data. One key aspect of Solr is its core structure,… Read More »Apache Solr Core Components
As a follow-up to the previous article, I will explain the Apache Solr query structure and query parsers. In Apache Solr, a document is a… Read More »Apache Solr Query Structure
I am learning Apache Solr for two months and I will share my experiences as I learn about Solr and its various features and capabilities.… Read More »Introduction to Apache Solr
Bu makalede concurrency’nin getirdiği karmaşıklığa ve ilgili terimlere değineceğim. Ardından 2015 senesinden itibaren ortaya çıkan, özellikle Kotlin’in concurrency yapısında yer edinmiş olan Structured Concurrency kavramından… Read More »Structured Concurrency Nedir?
In Django projects, we ship our long-running tasks in Celery and sometimes unfinished tasks require a retry mechanism. For a long-running task, a user will… Read More »Retrying in Celery
A log is created around when any type of event discretely occurs in a software system. A customer making a payment in the checkout or… Read More »Logging in Django