Skip to content

Method delete_list

marufcetin edited this page Sep 1, 2026 · 1 revision

Method: delete_list()

Turkce Dokumantasyon | English Documentation

Category: Core CRUD Methods
Submodule: AmberDB
Entry Type: Batch Deletion


1. Definition and Overview

delete_list() executes batch deletions for multiple record IDs in a single high-performance pipeline. It unlinks or soft-deletes records and synchronizes secondary indexes in a unified pass.


2. Syntax and Signature

my $status = $adb->delete_list($table_id, @record_ids);
# or passing an array reference of IDs
my $status = $adb->delete_list($table_id, \@record_ids);

3. Practical Code Example

# Batch delete records 101, 102, and 105
$adb->delete_list("catalog_product", 101, 102, 105);

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