NAME
DBIx::Class::Async::Storage - Storage Layer for DBIx::Class::Async
VERSION
Version 0.03
SYNOPSIS
use DBIx::Class::Async::Storage;
# Typically created internally by DBIx::Class::Async::Schema
my $storage = DBIx::Class::Async::Storage->new(
_schema => $schema_instance,
);
# Get the schema
my $schema = $storage->schema;
# Disconnect
$storage->disconnect;
DESCRIPTION
DBIx::Class::Async::Storage provides a minimal storage layer implementation for DBIx::Class::Async. This class exists primarily for compatibility with the DBIx::Class ecosystem, providing the expected storage interface without direct database handle management.
In the asynchronous architecture, database operations are delegated to a separate worker process or service, so this storage layer does not manage traditional database connections.
CONSTRUCTOR
new
my $storage = DBIx::Class::Async::Storage->new(
_schema => $schema, # DBIx::Class::Async::Schema instance
);
Creates a new storage object.
- Parameters
-
_schema-
A DBIx::Class::Async::Schema instance. This is typically passed internally.
- Returns
-
A new
DBIx::Class::Async::Storageobject.
METHODS
schema
my $schema = $storage->schema;
Returns the associated schema object.
- Returns
-
The DBIx::Class::Async::Schema instance associated with this storage.
dbh
my $dbh = $storage->dbh;
Returns the database handle.
- Returns
-
Always returns
undefsinceDBIx::Class::Asyncdoes not provide direct database handle access in the asynchronous architecture. - Notes
-
This method exists for compatibility with DBIx::Class but returns
undefbecause database operations are handled by a separate worker process.
disconnect
$storage->disconnect;
Disconnects from the database.
- Returns
-
True (1) on success.
- Notes
-
This method calls
disconnecton the associated schema object if it exists.
debug
$storage->debug(1);
my $level = $storage->debug;
Gets or sets the debug level.
- Parameters
- Returns
-
The current debug level (defaults to 0).
- Notes
-
This is a no-op method provided for compatibility. Debugging in asynchronous contexts is typically handled differently.
debugobj
my $debugobj = $storage->debugobj;
Returns a debug object.
- Returns
-
A mock debug object blessed into
DBIx::Class::Async::DebugObj. - Notes
-
This method returns a minimal object for compatibility. Real debugging functionality may be limited in asynchronous contexts.
INTERNAL NOTES
This class implements a minimal subset of the DBIx::Class::Storage interface required for compatibility with the DBIx::Class ecosystem. Key differences:
No direct database handle management
No SQL generation or execution
No transaction management at this level
Debug methods are no-ops or return mock objects
Database operations in DBIx::Class::Async are performed by a separate worker process or service, so this storage layer acts primarily as a compatibility shim.
SEE ALSO
DBIx::Class::Async - Asynchronous DBIx::Class interface
DBIx::Class::Async::Schema - Asynchronous schema class
DBIx::Class::Storage - Standard DBIx::Class storage interface
AUTHOR
Mohammad Sajid Anwar, <mohammad.anwar at yahoo.com>
REPOSITORY
https://github.com/manwar/DBIx-Class-Async
BUGS
Please report any bugs or feature requests through the web interface at https://github.com/manwar/DBIx-Class-Async/issues. I will be notified and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc DBIx::Class::Async::Storage
You can also look for information at:
BUG Report
CPAN Ratings
Search MetaCPAN
LICENSE AND COPYRIGHT
Copyright (C) 2026 Mohammad Sajid Anwar.
This program is free software; you can redistribute it and / or modify it under the terms of the the Artistic License (2.0). You may obtain a copy of the full license at:
http://www.perlfoundation.org/artistic_license_2_0
Any use, modification, and distribution of the Standard or Modified Versions is governed by this Artistic License.By using, modifying or distributing the Package, you accept this license. Do not use, modify, or distribute the Package, if you do not accept this license.
If your Modified Version has been derived from a Modified Version made by someone other than you,you are nevertheless required to ensure that your Modified Version complies with the requirements of this license.
This license does not grant you the right to use any trademark, service mark, tradename, or logo of the Copyright Holder.
This license includes the non-exclusive, worldwide, free-of-charge patent license to make, have made, use, offer to sell, sell, import and otherwise transfer the Package with respect to any patent claims licensable by the Copyright Holder that are necessarily infringed by the Package. If you institute patent litigation (including a cross-claim or counterclaim) against any party alleging that the Package constitutes direct or contributory patent infringement,then this Artistic License to you shall terminate on the date that such litigation is filed.
Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.