Uncategorized

Redis vs MySql vs MongoDb vs File Cache for Data Caching?

We are running many websites in Yii2 application. Currently we are using File Cache for Data Caching. Now we want to use load balancer and put our caching on dedicated server. We will have to store approx 100GB of cached data. What we have tried? File Cache: Working great currently. But We can not move […]

Uncategorized

Magento 2.4.6. Unable to output data to json

I have a problem with the json output when sending a request to the API. I receive data in this format: "{\n \"name\": \"John\",\n \"age\": 30,\n \"car\": null,\n \"address\": {\n \"street\": \"123 Main St\",\n \"city\": \"Anytown\",\n \"zip\": \"12345\"\n }\n}" I need the data in this format: { "name": "John", "age": 30, "car": null, "address": { […]

Fluent-bit in Kubernetes cannot input timestamp data properly

At my company, I built a K8s cluster with Terraform and configured a logging system with EFK (Elasticsearch, Fluent-bit, Kibana). k8s and Elasticsearch use AWS’s EKS and Opensearch Servcie (ES 7.10), and Fluent-bit was installed separately as a Daemonset through Helm. https://artifacthub.io/packages/helm/fluent/fluent-bit In the case of Fluent-bit Config, it is structured as follows. config: inputs: […]

Data table fixed header & horizontal scroll – Angular

I’m working on a table that should have a fixed thead during page scrolling, and the table also needs to have a horizontal scroll. To achieve this, I’m cloning the thead of the table upon scrolling and adding the CSS property overflow: auto to it. I then synchronize the horizontal scroll bar of the thead […]