Project Colorado: A minimal and modular HA cluster for OpenSolaris


 
Thread Tools Search this Thread
Operating Systems Solaris Solaris BigAdmin RSS Project Colorado: A minimal and modular HA cluster for OpenSolaris
# 1  
Old 12-16-2009
Project Colorado: A minimal and modular HA cluster for OpenSolaris

Nicholas Solter presents at the Open HA Cluster Summit, San Francisco, May 2009.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Modular scripting

Hi, I am currently working on a project involving writing reusable modular components from basic like generic sort script to doing rigorous data matching involving millions of data in a flat file. Can you help me understand what sort of architecture and scripting languages can be explored?? ... (1 Reply)
Discussion started by: dikesm
1 Replies

2. High Performance Computing

Solaris 10 and OpenSolaris : Web Based Management tools and Sun Cluster installation

Gurus, I have several questions : 1. Does Solaris 10/OpenSolaris has some kind of web based management tools ? Currently I am using WebMin. It worked fine, however I am very curious to use the tools provided by Sun Microsystem. Please advise for package name and how to activate.... (0 Replies)
Discussion started by: Zepiroth
0 Replies

3. High Performance Computing

OpenSolaris Project: Hadoop Live CD

Hadoop is a software platform for processing huge amounts of data. The OpenSolaris Hadoop LiveCD project built a bootable CD-ROM image that provides users with a three-node virtual Hadoop cluster using OpenSolaris Zones. More... (0 Replies)
Discussion started by: Linux Bot
0 Replies

4. High Performance Computing

Building a Solaris Cluster Express cluster in a VirtualBox on OpenSolaris

Provides a description of how to set up a Solaris Cluster Express cluster in a VirtualBox on OpenSolaris. More... (0 Replies)
Discussion started by: Linux Bot
0 Replies

5. Programming

To study kernel and modular programming

I want to do kernel programming.So which site or books help me in studying these.I know C programming to a little extent.Please advice me (4 Replies)
Discussion started by: ranjith
4 Replies
Login or Register to Ask a Question
COMPACT(3)								 1								COMPACT(3)

compact - Create array containing variables and their values

SYNOPSIS
array compact (mixed $varname1, [mixed $...]) DESCRIPTION
Creates an array containing variables and their values. For each of these, compact(3) looks for a variable with that name in the current symbol table and adds it to the output array such that the variable name becomes the key and the contents of the variable become the value for that key. In short, it does the opposite of extract(3). Any strings that are not set will simply be skipped. PARAMETERS
o $varname1 -compact(3) takes a variable number of parameters. Each parameter can be either a string containing the name of the variable, or an array of variable names. The array can contain other arrays of variable names inside it; compact(3) handles it recursively. RETURN VALUES
Returns the output array with all the variables added to it. EXAMPLES
Example #1 compact(3) example <?php $city = "San Francisco"; $state = "CA"; $event = "SIGGRAPH"; $location_vars = array("city", "state"); $result = compact("event", "nothing_here", $location_vars); print_r($result); ?> The above example will output: Array ( [event] => SIGGRAPH [city] => San Francisco [state] => CA ) NOTES
Note Gotcha Because variable variables may not be used with PHP's Superglobal arrays within functions, the Superglobal arrays may not be passed into compact(3). SEE ALSO
extract(3). PHP Documentation Group COMPACT(3)