Nexenta Storage Appliance 0.99.5 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Nexenta Storage Appliance 0.99.5 (Default branch)
# 1  
Old 03-05-2008
Nexenta Storage Appliance 0.99.5 (Default branch)

Image Nexenta Storage Appliance is designed and built to operate as a 2nd tier storage alongside pre-existing commercial storage, providing online continuation of data for months and years, with tapes relegated to archival purposes only. The appliance is targeted for 2nd-tier NAS and iSCSI applications requiring extremely low cost storage as well as dramatically simplified provisioning, expansion, backup, replication, and archiving. It can also be used as a primary NAS in businesses that wish to expand at closer to commodity pricing. It supports unlimited snapshots, snapshot mirroring (replication), and easy management of extremely large storage pools. License: Other/Proprietary License with Free Trial Changes:
A native CIFS server is included. Major enhancements were made for NFS and CIFS shares. Second tier storage service was extended to support zvols (ZFS block devices). zvols and snapshots now have better integration. New features in the management GUI include support for NFS and CIFS shares, zvols, pagination, searching, log viewing, and multiple enhancements. Additional management functionality was added to the iSCSI target. Rsync and FTP shares were revised and enhanced. The User Guide was extended and updated.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
DBIx::Class::Storage::DBI::AutoCast(3)			User Contributed Perl Documentation		    DBIx::Class::Storage::DBI::AutoCast(3)

NAME
DBIx::Class::Storage::DBI::AutoCast - Storage component for RDBMS requiring explicit placeholder typing SYNOPSIS
$schema->storage->auto_cast(1); DESCRIPTION
In some combinations of RDBMS and DBD drivers (e.g. FreeTDS and Sybase) statements with values bound to columns or conditions that are not strings will throw implicit type conversion errors. As long as a column data_type is defined and resolves to a base RDBMS native type via "_native_data_type" as defined in your Storage driver, the placeholder for this column will be converted to: CAST(? as $mapped_type) This option can also be enabled in connect_info as: on_connect_call => ['set_auto_cast'] connect_call_set_auto_cast Executes: $schema->storage->auto_cast(1); on connection. Used as: on_connect_call => ['set_auto_cast'] in connect_info. AUTHOR
See "CONTRIBUTORS" in DBIx::Class LICENSE
You may distribute this code under the same terms as Perl itself. perl v5.16.2 2012-08-16 DBIx::Class::Storage::DBI::AutoCast(3)