awesome-repositories.com
Blog
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectDespreCum realizăm clasamentulPresăServer MCP
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

17 repository-uri

Awesome GitHub RepositoriesSingle Record Retrievers

Methods for fetching individual database records with built-in limit and error handling.

Distinguishing note: Distinct from bulk query tools: optimized for fetching exactly one record with specific error states for missing data.

Explore 17 awesome GitHub repositories matching data & databases · Single Record Retrievers. Refine with filters or upvote what's useful.

Awesome Single Record Retrievers GitHub Repositories

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • go-gorm/gormAvatar go-gorm

    go-gorm/gorm

    39,798Vezi pe GitHub↗

    GORM is a developer-focused object-relational mapping library for Go that provides a comprehensive data persistence framework. It serves as a database access layer, allowing developers to map application structures to database tables and perform CRUD operations using a fluent, type-safe query builder instead of writing raw SQL. The library distinguishes itself through its association-aware persistence, which automatically tracks and synchronizes complex entity relationships during database operations. It utilizes a driver-agnostic interface to maintain consistent behavior across various stora

    GORM provides First, Take, Last methods to retrieve a single object from the database, it adds LIMIT 1 condition when querying the database, and it will return the error ErrRecordNotFound if no record is found.

    Gogogolanggorm
    Vezi pe GitHub↗39,798
  • marmelab/react-adminAvatar marmelab

    marmelab/react-admin

    26,780Vezi pe GitHub↗

    React-admin is a framework for building data-driven administrative interfaces that connect to REST or GraphQL backends. It provides a comprehensive suite of tools for managing the full lifecycle of administrative applications, including resource-oriented routing, declarative form scaffolding, and context-driven state management. By utilizing a modular adapter-based architecture, the framework abstracts backend communication, allowing developers to build consistent CRUD interfaces that handle data fetching, authentication, and synchronization automatically. The project distinguishes itself thr

    Fetches and renders specific data records to provide context for detail views and page layouts.

    TypeScriptadminadmin-dashboardadmin-on-rest
    Vezi pe GitHub↗26,780
  • apify/crawleeAvatar apify

    apify/crawlee

    24,002Vezi pe GitHub↗

    Crawlee is a web scraping framework designed for building scalable, reliable, and distributed data extraction pipelines. It provides a unified interface for managing headless browser automation and lightweight HTTP requests, allowing developers to handle complex web navigation, dynamic content rendering, and large-scale data collection within a single, modular architecture. The project distinguishes itself through its resource-aware concurrency controller, which dynamically scales task execution based on real-time CPU and memory usage to prevent host machine exhaustion. It also features a rob

    Fetches data from storage and automatically parses JSON or text content into native formats.

    TypeScriptapifyautomationcrawler
    Vezi pe GitHub↗24,002
  • pubkey/rxdbAvatar pubkey

    pubkey/rxdb

    23,048Vezi pe GitHub↗

    This project is a reactive, offline-first NoSQL database engine designed for JavaScript applications. It provides a robust framework for managing application state by synchronizing data across browsers, mobile devices, and server-side runtimes. By treating local storage as the primary source of truth, it enables applications to remain functional without network connectivity, automatically reconciling changes with remote backends once a connection is restored. The database distinguishes itself through a modular architecture that supports cross-environment synchronization and high-performance d

    Reads large datasets from storage using incremental chunks to improve performance and reduce memory pressure.

    TypeScriptangularbrowser-databasecouchdb
    Vezi pe GitHub↗23,048
  • redis/go-redisAvatar redis

    redis/go-redis

    22,159Vezi pe GitHub↗

    This project is a feature-rich Go client library designed for interacting with Redis. It serves as a comprehensive interface for managing remote data stores, enabling developers to execute standard database commands, handle complex data structures, and perform asynchronous operations within Go applications. The library distinguishes itself through its support for advanced Redis capabilities, including connection pooling, pipelining, and transactional integrity. It provides specialized primitives for managing distributed clusters, including automated topology updates and request routing to sha

    Saves application objects to the database and fetches them by their unique identifier to maintain state across sessions.

    Gogogolangredis
    Vezi pe GitHub↗22,159
  • wagtail/wagtailAvatar wagtail

    wagtail/wagtail

    20,366Vezi pe GitHub↗

    Wagtail is an open-source content management system built on the Django web framework. It provides a structured, tree-based approach to content modeling, allowing developers to define custom page types and reusable content components that are managed through a highly customizable administrative interface. The platform distinguishes itself through its flexible, block-based content composition system, which enables editors to assemble complex page layouts dynamically. It also offers robust support for multi-site and multi-lingual environments, allowing organizations to manage distinct websites

    Provides methods for fetching individual content items by unique identifiers or public web addresses.

    Pythoncmsdjangohacktoberfest
    Vezi pe GitHub↗20,366
  • dapperlib/dapperAvatar DapperLib

    DapperLib/Dapper

    18,331Vezi pe GitHub↗

    Dapper is a lightweight object-relational mapper for .NET that functions as a high-performance data access library. It operates by extending standard database connection interfaces, allowing developers to execute raw SQL queries while automating the mapping of database results to strongly-typed objects. The library distinguishes itself through its use of runtime code generation, which creates high-performance instructions to map database rows to object properties with minimal overhead. It provides flexible data retrieval options, supporting both memory-buffered loading for speed and row-by-ro

    Fetches single database rows and maps them to strongly-typed objects.

    C#ado-netdappersql
    Vezi pe GitHub↗18,331
  • fastapi/sqlmodelAvatar fastapi

    fastapi/sqlmodel

    18,137Vezi pe GitHub↗

    SQLModel is a type-safe object-relational mapping library for Python that integrates database schema definitions with data validation logic. By combining these two roles into a single class, it allows developers to manage relational data structures and enforce data integrity for web APIs simultaneously. The framework is built to support asynchronous database operations, enabling high-performance applications to execute queries and transactions without blocking the main execution thread. The library distinguishes itself by leveraging Python type hints to provide IDE autocompletion and compile-

    Fetches specific database entries by primary key with built-in error handling for missing records.

    Pythonfastapijsonjson-schema
    Vezi pe GitHub↗18,137
  • geektutu/7days-golangAvatar geektutu

    geektutu/7days-golang

    16,812Vezi pe GitHub↗

    This project is an educational framework designed to teach the fundamentals of building core distributed systems and web services from scratch in Go. It provides a collection of modular implementations that demonstrate how to construct essential infrastructure components, including web servers, remote procedure call systems, distributed caches, and database abstraction layers. The framework distinguishes itself by focusing on the internal mechanics of these systems rather than providing a high-level abstraction for production use. It covers the implementation of complex architectural patterns

    Provides methods for fetching individual database records with built-in limit and error handling.

    Gogolanglearningscratch
    Vezi pe GitHub↗16,812
  • diesel-rs/dieselAvatar diesel-rs

    diesel-rs/diesel

    14,021Vezi pe GitHub↗

    This project is a type-safe database toolkit and object-relational mapper designed to enforce structural consistency between database schemas and application code. By leveraging compile-time validation, it ensures that SQL queries and data structures remain synchronized, preventing common errors before the application executes. It provides a comprehensive framework for relational data modeling, allowing developers to define table associations and map database results directly into strongly-typed language objects. The library distinguishes itself through its focus on compile-time safety and au

    Retrieves child records for parents using efficient batching to prevent performance-degrading query patterns.

    Rustmysqlormpostgresql
    Vezi pe GitHub↗14,021
  • 99designs/gqlgenAvatar 99designs

    99designs/gqlgen

    10,729Vezi pe GitHub↗

    gqlgen is a schema-first Go library designed to build type-safe GraphQL servers. It functions as a code generation engine that transforms declarative GraphQL schema definitions into strongly-typed Go source code, ensuring strict alignment between the API contract and the underlying implementation. The framework distinguishes itself through its deep integration with the Go type system and its highly extensible build pipeline. By using schema-first development, it automates the creation of server boilerplate and resolver stubs, allowing developers to map schema fields directly to Go structs and

    Combines multiple individual data lookups into a single bulk query per request to lower database load.

    Gocodegendataloadergogenerate
    Vezi pe GitHub↗10,729
  • answerdotai/fasthtmlAvatar AnswerDotAI

    AnswerDotAI/fasthtml

    6,846Vezi pe GitHub↗

    FastHTML is a full-stack Python web framework designed for building interactive web applications using pure Python. It functions as an HTMX integration framework and a Python HTML domain-specific language, allowing developers to generate HTML structures using native objects and functions instead of external templating files. The framework is distinguished by its native support for real-time bidirectional communication via WebSockets and Server-Sent Events, enabling server-side updates to be pushed to the browser without full page reloads. It further integrates identity management through OAut

    Fetches specific records by their primary or compound key using square bracket indexing.

    Jupyter Notebook
    Vezi pe GitHub↗6,846
  • go-xorm/xormAvatar go-xorm

    go-xorm/xorm

    6,628Vezi pe GitHub↗

    xorm is a relational mapper and object-relational mapping tool for Go. It translates Go structures into SQL queries and maps database rows back into native objects, providing a multi-dialect database driver that supports MySQL, PostgreSQL, SQLite, Oracle, SQL Server, and TiDB. The project features a read-write splitting manager that routes modification requests to a primary database and read requests to replicas. It includes a database schema synchronizer to automatically align table structures and indexes with application data models, as well as a fluent SQL query builder for constructing co

    Offers optimized methods for fetching a single record based on provided object fields.

    Gogolangmssqlmysql
    Vezi pe GitHub↗6,628
  • elixir-ecto/ectoAvatar elixir-ecto

    elixir-ecto/ecto

    6,471Vezi pe GitHub↗

    Ecto is an Elixir database toolkit that maps database rows to Elixir structs and validates data changes through changesets before persistence. It provides a language-integrated query syntax for composing database queries, building them incrementally and securely with compile-time expansion into safe SQL. The toolkit connects to multiple database backends including PostgreSQL, MySQL, MSSQL, SQLite3, ClickHouse, and ETS through a pluggable adapter interface. It supports eager and lazy preloading of associated records to eliminate N+1 query problems, and can store nested data structures as embed

    Retrieves one database row matching explicit ordering or attribute conditions.

    Elixir
    Vezi pe GitHub↗6,471
  • inventree/inventreeAvatar inventree

    inventree/InvenTree

    6,350Vezi pe GitHub↗

    InvenTree is an open-source inventory management platform built on Django, designed for tracking parts, stock levels, and supply chain operations through a web interface and REST API. The system uses barcodes—including QR codes, 1D barcodes, and Data Matrix codes—as primary identifiers for scanning, linking, and triggering inventory actions, and extends core functionality through a Python plugin framework supporting custom actions, UI panels, barcode handlers, and scheduled tasks. The platform distinguishes itself through a comprehensive plugin-based extensibility system that allows custom in

    Fetches individual database records by primary key using model class constructors.

    Pythondjangohacktoberfestpython
    Vezi pe GitHub↗6,350
  • chillicream/graphql-platformAvatar ChilliCream

    ChilliCream/graphql-platform

    5,712Vezi pe GitHub↗

    GraphQL Platform is a comprehensive GraphQL ecosystem for .NET that provides a spec-compliant server framework for building APIs and gateways, along with a typed C# client for consuming GraphQL services. At its core, it translates C# classes and methods into a GraphQL schema using code-first or fluent descriptor approaches, enabling developers to define their API structure directly from their existing .NET code. The platform distinguishes itself through several integrated capabilities that address common GraphQL production concerns. It includes a DataLoader batching and caching engine that gr

    Groups multiple requests for the same data key into a single batch call to reduce redundant database queries.

    C#asp-netasp-net-corec-sharp
    Vezi pe GitHub↗5,712
  • pallets-eco/flask-sqlalchemyAvatar pallets-eco

    pallets-eco/flask-sqlalchemy

    4,314Vezi pe GitHub↗

    Flask-SQLAlchemy is a toolkit that integrates the SQLAlchemy relational database toolkit with the Flask web framework. It enables relational data modeling by defining database table structures as Python classes and manages the persistence and retrieval of database records within a web application. The project binds database session lifecycles to the active application request context to ensure automatic connection cleanup. It provides specialized utilities for web data access, including query result pagination and a mechanism to automatically trigger 404 Not Found responses when a requested d

    Provides a utility to retrieve a single database record or automatically trigger a 404 Not Found response.

    Pythonflaskflask-sqlalchemypython
    Vezi pe GitHub↗4,314
  1. Home
  2. Data & Databases
  3. Single Record Retrievers

Explorează sub-etichetele

  • Batch Data Fetchers1 sub-tagUtilities for aggregating multiple record requests into single queries to optimize network performance. **Distinct from Single Record Retrievers:** Distinct from Single Record Retrievers: focuses on batching multiple requests rather than optimizing single record retrieval.