awesome-repositories.com
© 2026 Bringes Technology SRL·VAT RO45896025·hello@bringes.io
MCPSitemapPrivacyTerms
Matching Algorithms · Awesome GitHub Repositories

3 repos

Awesome GitHub RepositoriesMatching Algorithms

Underlying computational methods used to resolve incoming requests to specific route handlers, emphasizing performance and pattern complexity.

Explore 3 awesome GitHub repositories matching web development · Matching Algorithms. Refine with filters or upvote what's useful.

  1. Home
  2. Web Development
  3. Routing Systems
  4. Routing
  5. Matching Algorithms

Awesome Matching Algorithms GitHub Repositories

Describe the repository you're looking for…
We'll search the best matching repositories with AI.
  • gin-gonic/gin

    gin-gonic/gin

    88,134GitHubView on GitHub↗

    Gin is a web framework designed for building high-performance web services and APIs. It functions as a middleware-oriented engine that processes incoming HTTP requests through a sequential chain of handlers, allowing for the modular management of cross-cutting concerns such as authentication and logging. The framework

    Goframeworkgingo
  • django/django

    django/django

    86,891GitHubView on GitHub↗

    Django is a full-stack web framework designed for rapid backend development. It provides an integrated environment for building data-driven applications by combining an object-relational mapping layer for database management with a modular request-response pipeline for handling HTTP traffic. The framework emphasizes se

    Pythonappsdjangoframework
  • rails/rails

    rails/rails

    58,297GitHubView on GitHub↗

    This project is a full-stack web framework designed for building database-backed applications through a standardized architectural pattern. It provides a comprehensive suite of integrated libraries that manage the entire request-response lifecycle, from routing incoming web traffic to rendering dynamic server-side temp

    Rubyactivejobactiverecordframework

Explore sub-tags

  • HTTP Request RoutersTools that map incoming HTTP requests to specific controller actions using defined URL patterns.
  • Radix Tree RoutersRouters that use compressed trie data structures to perform high-speed path matching with minimal memory usage.
  • Regex-Based URL DispatchersDispatchers that map incoming request paths to specific functions using regular expression patterns.