Model Railroad System 2.1.19 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Model Railroad System 2.1.19 (Default branch)
# 1  
Old 01-16-2009
Model Railroad System 2.1.19 (Default branch)

Image The Model Railroad System is a software package that can help you run your railroad. It allows you to operate your layout, from running trains to working your signals and switches. It has support for a network of Bruce Chubb CMR/I USIC, SUSIC, and/or SMINI nodes, and/or a network of Lenz's XPressNet DCC nodes. Software to create switch lists for freight car forwarding and create timetables for your railroad are included. There is software to help with photographing your trains, and to compute the correct value for those pesky dropping resistors for LEDs and/or incandescent lamps. License: GNU General Public License v2 Changes:
Minor changes to Dispatcher. A bug in the CMRINode class code has been fixed. A simple installer program has been created. The binary distribution archive structure has been changed, creating separate archives for pure binaries, development binaries, and documentation. Man pages have been created for executable programs. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to check the system model in linux?

is there any way to check what model and made is the linux box from command line like - it is virtual server or is it a physical manchine then what made it is (4 Replies)
Discussion started by: robo
4 Replies

2. AIX

system ,machine id , model name Explain ?

hi every body i am new in aix environment and i want to understand some keywords plz any one who can explain it to me uname -u Display system id number uname -M Displays the system model name uname -m Displays the machine ID number what is the machine id is this for the hardware... (4 Replies)
Discussion started by: maxim42
4 Replies
Login or Register to Ask a Question
Catalyst::TraitFor::Model::DBIC::Schema::Caching(3pm)	User Contributed Perl Documentation  Catalyst::TraitFor::Model::DBIC::Schema::Caching(3pm)

NAME
Catalyst::TraitFor::Model::DBIC::Schema::Caching - Query caching support for Catalyst::Model::DBIC::Schema SYNOPSIS
__PACKAGE__->config({ traits => ['Caching'], connect_info => ['dbi:mysql:db', 'user', 'pass'], }); $c->model('DB::Table')->search({ foo => 'bar' }, { cache_for => 18000 }); DESCRIPTION
Enable caching support using DBIx::Class::Cursor::Cached and Catalyst::Plugin::Cache. In order for this to work, Catalyst::Plugin::Cache must be configured and loaded. A possible configuration would look like this: <Plugin::Cache> <backend> class Cache::FastMmap unlink_on_exit 1 share_file /tmp/myapp_share </backend> </Plugin::Cache> Then in your queries, set the "cache_for" ResultSet attribute to the number of seconds you want the query results to be cached for, eg.: $c->model('DB::Table')->search({ foo => 'bar' }, { cache_for => 18000 }); CONFIG PARAMETERS
caching Turn caching on or off, you can use: $c->model('DB')->caching(0); SEE ALSO
Catalyst::Model::DBIC::Schema, DBIx::Class, Catalyst::Plugin::Cache, Cache::FastMmap, DBIx::Class::Cursor::Cached AUTHOR
See "AUTHOR" in Catalyst::Model::DBIC::Schema and "CONTRIBUTORS" in Catalyst::Model::DBIC::Schema. COPYRIGHT
See "COPYRIGHT" in Catalyst::Model::DBIC::Schema. LICENSE
This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2011-05-15 Catalyst::TraitFor::Model::DBIC::Schema::Caching(3pm)