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.

16 lines (15 loc) 463 B
"use strict"; /** * 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 */ Object.defineProperty(exports, "__esModule", { value: true }); exports.QueryCache = void 0; var cache_1 = require("./cache"); Object.defineProperty(exports, "QueryCache", { enumerable: true, get: function () { return cache_1.QueryCache; } });