Help language development. Donate to The Perl Foundation
Storable::Lite - Provides persistent storage of Raku classes and other types in the local user's file system
use Storable::Lite;
Storable::Lite is a copy of the current Raku module PerlStore with a name change and other changes to reflect the new Raku name of the original Perl 6. It is also now under management of App::Mi6 and published to the Zef Raku module repository.
.raku serialization class and module
This module will work only for only simple situations. All data that is not visible after calling .raku method will be lost. This may be considered a limitation or feature.
```raku my Bar $bar .= new(a=> 128); my Foo $foo .= new(u=> 'Gore', bar => $bar);
$foo.to-file('tt1.raku');
my $tested = Foo.from-file('tt1.raku');
```
Tom Browder [email protected]
Kamil KuĊaga [github:teodozjan (original author)]
Copyright 2021 Tom Browder
This library is free software; you may redistribute it or modify it under the Artistic License 2.0.