12 个仓库
Caching the raw results of database queries in a secondary storage layer to reduce load.
Distinct from Method Result Caches: Candidates focus on specific domains like geolocation or method returns, not general database result sets.
Explore 12 awesome GitHub repositories matching data & databases · Database Result Caching. Refine with filters or upvote what's useful.
Doctrine ORM is a PHP object-relational mapper that connects application objects to relational database tables. It uses the data mapper and identity map patterns to decouple the in-memory object model from the database schema, allowing developers to manage data persistence without writing manual SQL. The project features a dedicated object-oriented query language and programmatic builder for retrieving data based on entities rather than tables. It implements a unit-of-work system to track object changes during a request and synchronize them via atomic transactions. The capability surface inc
Implements a secondary cache to store retrieved database data and reduce redundant query load.
TechEmpower FrameworkBenchmarks is an open-source project that provides a standardized, reproducible suite for measuring and comparing the performance of web frameworks across many languages. At its core, it defines a set of common server-side tasks—such as JSON serialization, database queries, and server-side template rendering—and executes them uniformly against hundreds of framework implementations to produce comparable throughput and latency metrics. The project is built around a multi-language benchmark harness that automates the full test lifecycle, from dependency installation and serve
Stores fetched database rows in an in-memory or local-process cache to reduce database load on subsequent requests.
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
Controls whether specific database tables are cached via configuration tags on data models.
Buildbot is a Python-based continuous integration framework and distributed build orchestrator. It functions as a build automation engine that coordinates the retrieval of source code, the execution of build steps, and the reporting of results through a central controller and a network of remote worker agents. The system is distinguished by a plugin-based extensibility architecture and a master-worker distribution model. It allows for dynamic build modification at runtime and supports a pluggable database backend for persisting system state and historical build data. The project covers a bro
Implements a caching layer for object retrieval by ID to reduce redundant database queries.
DoctrineBundle 是一个 Symfony 集成,用于配置和管理 Doctrine 对象关系映射器(ORM)和数据库抽象层(DBAL)。它提供了将应用程序对象映射到关系数据库表并通过一致的编程接口执行原始查询所需的基础工具。 该项目包含一个带有命令行工具的数据库模式管理器,用于将数据库结构与实体映射同步并执行迁移。它还提供了一个数据库查询调试器和活动调试工具,通过 Web 界面跟踪性能和执行细节。 该 Bundle 涵盖了广泛的数据管理功能,包括元数据映射配置、全局查询过滤和自定义实体标识符生成。它还通过查询结果缓存支持性能优化,并提供了一个用于拦截数据库和实体生命周期更改的事件驱动系统。
Implements a secondary storage layer to cache the raw results of database queries and reduce server load.
Yii 是一个全栈 PHP Web 框架和基于组件的系统,专为构建动态网站和 RESTful 服务而设计。它作为 MVC 应用程序框架运行,将业务逻辑与用户界面分离,并包含一个用于与数据库交互的内置对象关系映射器。 该项目提供了一套全面的命令行工具集,用于项目引导、自动化代码生成和后台任务执行。它利用基于组件的架构和服务定位器来管理依赖注入和对象生命周期。 该框架涵盖了广泛的功能领域,包括模式迁移和版本控制、基于角色的身份管理以及内容本地化。它还具有多种缓存策略,例如片段缓存、查询缓存和全页缓存,并支持基于依赖的失效。其他系统工具包括软件测试框架、事件日志记录和请求速率限制。
Stores database query results in a temporary layer to avoid executing expensive statements repeatedly.
This project is a mirrored version of the MyBatis persistence framework source code, presented as a Java database integration library and SQL mapper framework. Its primary purpose is to provide a codebase featuring detailed Chinese language annotations to facilitate the study of the framework's internal architecture and design patterns. The repository focuses on Java source code analysis and framework learning. It allows users to examine the underlying implementation of the library to understand how complex software components are structured and executed. The core functionality covered inclu
Provides a mechanism to store frequently accessed database records in memory to reduce redundant query execution.
PostgREST 是一个自动将 PostgreSQL 数据库模式转换为生产就绪 RESTful API 的工具。它作为一个数据库访问层和查询引擎,将 HTTP 请求直接映射到 SQL 查询,提供了一个低代码接口,用于执行创建、读取、更新和删除操作,而无需手动编写样板代码。 该项目通过使用模式驱动的 API 生成和基于元数据的发现,将数据库表公开为可导航资源,从而脱颖而出。它通过执行自定义和模板化 SQL、用于注入业务逻辑的基于插件的中间件系统,以及在运行时加载外部共享库的能力,扩展了标准的 CRUD 功能。 该系统涵盖了广泛的功能,包括具有表连接、聚合和全文搜索的复杂数据查询。它实现了一个全面的安全框架,具有基于令牌的身份验证、细粒度的表级权限和 CORS 管理。其他操作功能包括本地结果缓存、服务器健康监控以及对分布式 SQL 和 Amazon Redshift 的连接支持。 安装支持多种环境,包括作为独立二进制文件或通过 Docker Compose 和 Heroku 自动化模板。
Improves performance by caching raw database query results in a local file.
This project is a REST API framework for NestJS designed to automate the creation of boilerplate-free CRUD endpoints and resource management. It functions as an automated CRUD generator that produces controllers and services for standard database operations, accelerating the development of RESTful APIs. The toolkit includes a REST query parser that translates complex URL parameters into structured database filters, pagination, and sorting rules. It also operates as an API response serializer to control the exposure of entity fields and manage nested relations within JSON responses. For extend
Enables fetching fresh data directly from the database by bypassing stored results.
本项目是一个 Laravel 的数据库抽象层,实现了存储库模式以将业务逻辑与 Eloquent 数据库查询解耦。它提供了一个用于数据检索、分页和过滤的标准接口。 该系统包括一个查询标准机制,用于根据请求参数应用可重用的搜索条件,以及一个在记录创建、更新或删除期间自动清除存储结果的缓存包装器。它还具有一个展示层,用于将原始数据库模型属性转换为用户界面的格式化输出。 其他功能包括用于脚手架模型、存储库、控制器和服务提供商的命令行工具,以及用于验证存储库数据和转换模型属性的工具。
Caches raw results of expensive database queries in a secondary storage layer to reduce load.
本项目是一个 Laravel 应用程序的存储库模式库,旨在将业务逻辑与数据库查询和存储实现解耦。它提供了一个标准化的数据访问层,以将应用程序逻辑与底层存储层隔离开来。 该库包括一个查询过滤器系统,可将 HTTP 请求参数转换为动态数据库过滤器、搜索条件和排序逻辑。它具有一个 API 展示层,用于将内部数据结构与客户端响应分离,以及一个在记录被修改时自动刷新存储数据库结果的缓存管理器。 其他功能包括用于生成控制器、模型和存储库的命令行工具,以及在数据持久化之前强制执行业务规则的验证器类。
Caches raw results of expensive database queries and refreshes them automatically when records change.
This project is a PHP SQL REST API generator and database API wrapper that automatically transforms SQL database tables into a functional web interface. It serves as a lightweight layer that maps HTTP methods to SQL commands, allowing for the creation, reading, updating, and deletion of records without writing manual endpoint code. The tool distinguishes itself by providing a dedicated spatial data API gateway for querying and exporting geometry columns using GeoJSON and WKT standards. It also functions as a multi-tenant data API, capable of isolating records for different users through share
Caches raw database query results in a temporary layer to reduce load from expensive lookups.