Best of MicroservicesOctober 2022

  1. 1
    Article
    Avatar of communityCommunity Picks·3y

    Netflix System Design- Backend Architecture

    Netflix accounts for about 15% of the world's internet bandwidth traffic. Netflix operates in two clouds Amazon Web Services and Open Connect (Netflix content delivery network) The overall Netflix system consists of three main parts. Zuul as its API gateway is built to allow dynamic routing, traffic monitoring, and security, resilience to The Netty handlers on the front and back of the filters.

  2. 2
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    Learn Docker and Kubernetes – Free Hands-On Course

    Guy Barrette teaches this Docker Containers and Kubernetes Fundamentals course for beginners. Guy is a developer & trainer with more than 25 years of experience. He is a Microsoft MVP, frequent conference speaker, and was leader of the Montreal.NET User Group for more than 23 years.

  3. 3
    Article
    Avatar of awstipAWS Tip·4y

    Serverless Architecture For Next App

    Serverless architecture for Next App Serverless has been there for a fair amount of time but surely has come to a more mature state than it was there about a few years ago.

  4. 4
    Article
    Avatar of communityCommunity Picks·4y

    Building a Micro-frontend Framework

    Micro-frontend architecture is a design approach in which a front-end app is decomposed into individual, semi-independent “microapps’ working loosely together. The idea is that the individual microapps within a macroapp (as we shall call the composed, top-level app) are analogous to the various iframes. There is still a long laundry list of issues to be aware of when using iframe.

  5. 5
    Article
    Avatar of communityCommunity Picks·3y

    Micro services Fundamentals

    Microservices is a type of architecture where the application is broken down into smaller services based on the domain. In a monolithic application, this area of functionality concerns only one application so it is easier to handle it. In contrast to the microservices architecture, monolithic applications are much easier to debug and test.

  6. 6
    Article
    Avatar of faunFaun·4y

    A guide to Redis

    Redis is a data structure store that may be used as a message broker, a database, or an in-memory cache. It supports a variety of data types, including bitmaps, hyperloglogs, geospatial indexes with radius searches, streams, lists, and sorted sets with range queries.

  7. 7
    Article
    Avatar of communityCommunity Picks·3y

    Monolith vs Microservices: Which should you use

    Microservices as a software architecture has made its way into the development teams of popular companies like Netflix and Google. It offers flexibility, scalability and agility for the product or service you’re putting together. But that doesn’t mean it’s a perfect infrastructure, and a lot of companies both big and small still create monoliths.

  8. 8
    Article
    Avatar of phProduct Hunt·4y

    SafeQL - Write SQL Queries With Confidence

    Write SQL Queries With Confidence SafeQL is an ESLint plugin for writing queries in a type-safe way. Easy To Use - Built with Monorepos & Microservices in mind.

  9. 9
    Article
    Avatar of logrocketLogRocket·4y

    Rust microservices in server-side WebAssembly

    The Rust programming language has gained mainstream adoption in the past several years. Rust programs are compiled into native machine code, which is not portable and is unsafe in multi-tenancy cloud environments.

  10. 10
    Article
    Avatar of pointerPointer·4y

    ts-safeql/safeql: Validate and auto-generate TypeScript types from raw SQL queries in PostgreSQL.

    SafeQL was built with monorepos and microservices in mind. It's easy to use with multiple database clients, including Prisma, Sequelize, Postgres, and more. SafeQL automatically infers the type of the query result based on the query itself. 1665766642.51667130s SafeQL works with any Postgres client, including prisma,Sequelize,.

  11. 11
    Article
    Avatar of discdotDiscover .NET·4y

    Quick Overview to Microservices Solution Architecture

    The microservices architecture is one of the modern architectural patterns that allows us to build loosely coupled software solution. Each component has its own realm of responsibility and is completely independent of the other components.

  12. 12
    Article
    Avatar of communityCommunity Picks·4y

    Microservices with Laravel - The Problem with Monoliths

    In a classic monolith application, you create one repository and put all the classes in it. But in the microservices world, we create a separate project for each namespace. A service is a running Laravel instance, an application on its own, which usually has an API, and can communicate with the outside world. In software development, size does matter.