UNPKG

bigquery-client

Version:

A feature-rich Node.js client for Google BigQuery with support for CRUD operations, transactions, query building, and advanced features like aggregate functions, pagination, and logging.

12 lines (11 loc) 244 B
/** * Cache Module * * Provides intelligent caching functionality with TTL and LRU eviction * for BigQuery query results and metadata. * * @module Cache * @version 1.0.6 * @author Pravin Jadhav */ export { QueryCache } from './cache';