Programming

Sticky sessions with Apache APISIX – the demo

Sticky sessions with Apache APISIX – the demo

  Last week, we described the concept behind sticky sessions: you forward a request to the same upstream because there’s context data associated with the session on that node. However, if necessary, you should replicate the data to other upstreams because this one might go down. In this post, we are going to illustrate it with a demo. The overall design Design options are limitless... »

Problem with axios header in nuxt.js

Problem with axios header in nuxt.js

Hello, I’m working on a project using nuxt.js that other developers have already worked on. I don’t know much about nuxt.js and I’m having a problem that I can’t solve. When I do an npm run build then npm run start the application works normally, but when I do an npm run dev I get errors: TypeError: Cannot read properties of undefined (reading ... »

Power of Python Collection Framework : For Beginners

Power of Python Collection Framework : For Beginners

Introduction: Python, being a versatile and powerful programming language, offers a rich set of built-in data structures and algorithms through its Collection Framework. This framework provides a wide array of options for efficiently storing, manipulating, and accessing data. In this blog, we will delve into the Python Collection Framework and explore its various components, highlighting their fea... »