GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Oryx::Value::Complex(3) User Contributed Perl Documentation Oryx::Value::Complex(3)

Oryx::Value::Complex - Values containing complex Perl types

  package CMS::Setting;

  use base qw( Oryx::Class );

  our $schema = {
      attributes => [ {
          name => 'setting_key',
          type => 'String',
      }, {
          name => 'setting_value',
          type => 'Complex',
      } ],
  };

  $x = CMS::Setting->create({
      setting_key   => 'my_setting',
      setting_value => {
          foo => 1,
          bar => 2,
          baz => [ 1, 2, 3 ],
      },
  });

This is a good catch-all type for many kinds of Perl data. It can store any arbitrarily complex data structure that is serializable with YAML. This includes almost anything. However, you should probably see that documentation and test your particular data first as YAML cannot serialize everything.

This value type does not perform any work to check, but uses YAML to inflate and deflate the data into the "Text" primitive type.

Oryx::Value, YAML

Richard Hundt <richard NO SPAM AT protea-systems.com>

Andrew Sterling Hanenkamp <hanenkamp@cpan.org>

This library is free software and may be used under the same terms as Perl itself.
2006-02-17 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.