Skip to content

Method buffer_read

marufcetin edited this page Sep 1, 2026 · 1 revision

Method: buffer_read()

Turkce Dokumantasyon | English Documentation

Category: Cache & Buffer Methods
Submodule: AmberDB::Cache
Entry Type: Disk Staging Read


1. Definition and Overview

buffer_read() reads and deserializes all staged records from a persistent disk buffer file (dbstore/buffer/${table_id}.tmp).


2. Syntax and Signature

my @rows = $adb->buffer_read($table_id);

3. Practical Code Example

my @staged_data = $adb->buffer_read("nightly_import");
for my $row (@staged_data) {
    print "Staged Row: $row->[1]\n";
}

4. See Also

AmberDB Encyclopedia

Home · A-Z Index


Getting Started & Guides


Core Concepts


Core CRUD Methods


Query, Search & Facets


Transactions & Locks


Cache, Buffer & Low-Level


Locale & Helpers


Maintenance & Tools


Configuration Flags


File Formats


Language

Clone this wiki locally