<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title> &#187; Servers</title>
	<atom:link href="http://freddysmind.com/blog/category/computers/servers/feed/" rel="self" type="application/rss+xml" />
	<link>http://freddysmind.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 14 Jul 2010 13:10:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Crazy&#160;Storage</title>
		<link>http://freddysmind.com/blog/2009/09/crazy-storage/</link>
		<comments>http://freddysmind.com/blog/2009/09/crazy-storage/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 21:00:34 +0000</pubDate>
		<dc:creator>Freddy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>

		<guid isPermaLink="false">http://freddysmind.com/blog/?p=376</guid>
		<description><![CDATA[BackBlaze Storage Server Props for sharing all of the great information, the only problem I have&#8230; is now I want to build one. Perhaps on a miniature scale, 67 terabytes seems a bit excessive.]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.backblaze.com/2009/09/01/petabytes-on-a-budget-how-to-build-cheap-cloud-storage/">BackBlaze Storage Server</a></p>
<p>Props for sharing all of the great information, the only problem I have&#8230; is now I want to build one.</p>
<p>Perhaps on a miniature scale, 67 terabytes seems a bit excessive.</p>
]]></content:encoded>
			<wfw:commentRss>http://freddysmind.com/blog/2009/09/crazy-storage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java connection to&#160;mysql</title>
		<link>http://freddysmind.com/blog/2009/08/java-connection-to-mysql/</link>
		<comments>http://freddysmind.com/blog/2009/08/java-connection-to-mysql/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 20:38:19 +0000</pubDate>
		<dc:creator>Freddy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Servers]]></category>

		<guid isPermaLink="false">http://freddysmind.com/blog/?p=339</guid>
		<description><![CDATA[Woohoo, after two typos and an unnecessary ticket to hostgator support I managed to make a connection to a mysql server (@hostgator) with Java. Click more to see the code. package org.connect; import java.sql.*; public class TestConnect { public static void main(String[] args) { Connection conn = null; try { String userName = &#8220;mordy3_test&#8221;; String [...]]]></description>
			<content:encoded><![CDATA[<p>Woohoo, after two typos and an unnecessary ticket to hostgator support I managed to make a connection to a mysql server (@hostgator) with Java.</p>
<p>Click more to see the code.</p>
<p><span id="more-339"></span></p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">package org.connect;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">import java.sql.*;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">public class TestConnect {</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>public static void main(String[] args)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;"><span style="white-space: pre;"> </span>{</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Connection conn = null;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">try</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">{</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">String userName = &#8220;mordy3_test&#8221;;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">String password = &#8220;test&#8221;;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">String url = &#8220;jdbc:mysql://harrisburgvolleyball.com:3306/mordy3_test&#8221;;</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">Class.forName (&#8220;com.mysql.jdbc.Driver&#8221;).newInstance ();</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">conn = DriverManager.getConnection (url, userName, password);</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">System.out.println (&#8220;Database connection established&#8221;);</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">catch (Exception e)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">{</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">System.err.println (&#8220;Cannot connect to database server&#8221;);</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">finally</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">{</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">if (conn != null)</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">{</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">try</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">{</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">conn.close ();</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">System.out.println (&#8220;Database connection terminated&#8221;);</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">catch (Exception e) { /* ignore close errors */ }</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow-x: hidden; overflow-y: hidden;">}</div>
<p>package org.connect;</p>
<p>import java.sql.*;</p>
<p>public class TestConnect {</p>
<p><span style="white-space: pre;"> </span>public static void main(String[] args)</p>
<p><span style="white-space: pre;"> </span>{</p>
<p>Connection conn = null;</p>
<p>try</p>
<p>{</p>
<p>String userName = &#8220;mordy3_test&#8221;;</p>
<p>String password = &#8220;test&#8221;;</p>
<p>String url = &#8220;jdbc:mysql://harrisburgvolleyball.com:3306/mordy3_test&#8221;;</p>
<p>Class.forName (&#8220;com.mysql.jdbc.Driver&#8221;).newInstance ();</p>
<p>conn = DriverManager.getConnection (url, userName, password);</p>
<p>System.out.println (&#8220;Database connection established&#8221;);</p>
<p>}</p>
<p>catch (Exception e)</p>
<p>{</p>
<p>System.err.println (&#8220;Cannot connect to database server&#8221;);</p>
<p>}</p>
<p>finally</p>
<p>{</p>
<p>if (conn != null)</p>
<p>{</p>
<p>try</p>
<p>{</p>
<p>conn.close ();</p>
<p>System.out.println (&#8220;Database connection terminated&#8221;);</p>
<p>}</p>
<p>catch (Exception e) { /* ignore close errors */ }</p>
<p>}</p>
<p>}</p>
<p>}</p>
<p>}</p>
]]></content:encoded>
			<wfw:commentRss>http://freddysmind.com/blog/2009/08/java-connection-to-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Storage&#160;Engines</title>
		<link>http://freddysmind.com/blog/2009/07/mysql-storage-engines/</link>
		<comments>http://freddysmind.com/blog/2009/07/mysql-storage-engines/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 22:17:16 +0000</pubDate>
		<dc:creator>Freddy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Servers]]></category>

		<guid isPermaLink="false">http://freddysmind.com/blog/?p=271</guid>
		<description><![CDATA[From the Sun supported MySQL website &#8211; http://dev.mysql.com/doc/refman/5.1/en/storage-engines.html MyISAM — The default MySQL storage engine and the one that is used the most in Web, data warehousing, and other application environments. MyISAM is supported in all MySQL configurations, and is the default storage engine unless you have configured MySQL to use a different one by default. [...]]]></description>
			<content:encoded><![CDATA[<p>From the Sun supported MySQL website &#8211; <a href="http://dev.mysql.com/doc/refman/5.1/en/storage-engines.html">http://dev.mysql.com/doc/refman/5.1/en/storage-engines.html</a></p>
<ul style="margin-top: 0px; margin-right: 4px; margin-bottom: 8px; margin-left: 16px; list-style-image: url(http://dev.mysql.com/common/img/list-orange-disc.png); list-style-type: initial; list-style-position: initial; padding: 0px;">
<li style="margin-bottom: 5px; margin-left: 8px; font-size: 14px; line-height: 14px; list-style-position: outside; list-style-image: none; list-style-type: disc; vertical-align: middle;">
<p style="font-size: 14px; line-height: 25px; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font-family: sans-serif; display: block; max-width: 720px; padding: 0px;"><code style="color: #0e4075; font-size: 13px; background-color: white; font-weight: normal; font-family: monospace, fixed;"><a style="background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-decoration: underline; color: blue; background-position: initial initial;" title="13.5. The MyISAM Storage Engine" href="http://dev.mysql.com/doc/refman/5.1/en/myisam-storage-engine.html">MyISAM</a></code> — The default MySQL storage engine and the one that is used the most in Web, data warehousing, and other application environments. <code style="color: #0e4075; font-size: 13px; background-color: white; font-weight: normal; font-family: monospace, fixed;">MyISAM</code> is supported in all MySQL configurations, and is the default storage engine unless you have configured MySQL to use a different one by default.</p>
</li>
<li style="margin-bottom: 5px; margin-left: 8px; font-size: 14px; line-height: 14px; list-style-position: outside; list-style-image: none; list-style-type: disc; vertical-align: middle;">
<p style="font-size: 14px; line-height: 25px; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font-family: sans-serif; display: block; max-width: 720px; padding: 0px;"><a style="background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-decoration: underline; color: blue; background-position: initial initial;" title="13.6. The InnoDB Storage Engine" href="http://dev.mysql.com/doc/refman/5.1/en/innodb.html"><code style="color: #0e4075; font-size: 13px; background-color: white; font-weight: normal; font-family: monospace, fixed;">InnoDB</code></a> — A transaction-safe (ACID compliant) storage engine for MySQL that has commit, rollback, and crash-recovery capabilities to protect user data. <code style="color: #0e4075; font-size: 13px; background-color: white; font-weight: normal; font-family: monospace, fixed;">InnoDB</code> row-level locking (without escalation to coarser granularity locks) and Oracle-style consistent nonlocking reads increase multi-user concurrency and performance. <code style="color: #0e4075; font-size: 13px; background-color: white; font-weight: normal; font-family: monospace, fixed;">InnoDB</code>stores user data in clustered indexes to reduce I/O for common queries based on primary keys. To maintain data integrity, <code style="color: #0e4075; font-size: 13px; background-color: white; font-weight: normal; font-family: monospace, fixed;">InnoDB</code> also supports <code style="color: #0e4075; font-size: 13px; background-color: white; font-weight: normal; font-family: monospace, fixed;">FOREIGN KEY</code> referential-integrity constraints.</p>
</li>
<li style="margin-bottom: 5px; margin-left: 8px; font-size: 14px; line-height: 14px; list-style-position: outside; list-style-image: none; list-style-type: disc; vertical-align: middle;">
<p style="font-size: 14px; line-height: 25px; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font-family: sans-serif; display: block; max-width: 720px; padding: 0px;"><a style="background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-decoration: underline; color: blue; background-position: initial initial;" title="13.9. The MEMORY (HEAP) Storage Engine" href="http://dev.mysql.com/doc/refman/5.1/en/memory-storage-engine.html"><code style="color: #0e4075; font-size: 13px; background-color: white; font-weight: normal; font-family: monospace, fixed;">Memory</code></a> — Stores all data in RAM for extremely fast access in environments that require quick lookups of reference and other like data. This engine was formerly known as the <code style="color: #0e4075; font-size: 13px; background-color: white; font-weight: normal; font-family: monospace, fixed;">HEAP</code> engine.</p>
</li>
<li style="margin-bottom: 5px; margin-left: 8px; font-size: 14px; line-height: 14px; list-style-position: outside; list-style-image: none; list-style-type: disc; vertical-align: middle;">
<p style="font-size: 14px; line-height: 25px; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font-family: sans-serif; display: block; max-width: 720px; padding: 0px;"><a style="background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-decoration: underline; color: blue; background-position: initial initial;" title="13.8. The MERGE Storage Engine" href="http://dev.mysql.com/doc/refman/5.1/en/merge-storage-engine.html"><code style="color: #0e4075; font-size: 13px; background-color: white; font-weight: normal; font-family: monospace, fixed;">Merge</code></a> — Allows a MySQL DBA or developer to logically group a series of identical <code style="color: #0e4075; font-size: 13px; background-color: white; font-weight: normal; font-family: monospace, fixed;">MyISAM</code> tables and reference them as one object. Good for VLDB environments such as data warehousing.</p>
</li>
<li style="margin-bottom: 5px; margin-left: 8px; font-size: 14px; line-height: 14px; list-style-position: outside; list-style-image: none; list-style-type: disc; vertical-align: middle;">
<p style="font-size: 14px; line-height: 25px; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font-family: sans-serif; display: block; max-width: 720px; padding: 0px;"><a style="background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-decoration: underline; color: blue; background-position: initial initial;" title="13.12. The ARCHIVE Storage Engine" href="http://dev.mysql.com/doc/refman/5.1/en/archive-storage-engine.html"><code style="color: #0e4075; font-size: 13px; background-color: white; font-weight: normal; font-family: monospace, fixed;">Archive</code></a> — Provides the perfect solution for storing and retrieving large amounts of seldom-referenced historical, archived, or security audit information.</p>
</li>
<li style="margin-bottom: 5px; margin-left: 8px; font-size: 14px; line-height: 14px; list-style-position: outside; list-style-image: none; list-style-type: disc; vertical-align: middle;">
<p style="font-size: 14px; line-height: 25px; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font-family: sans-serif; display: block; max-width: 720px; padding: 0px;"><a style="background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-decoration: underline; color: blue; background-position: initial initial;" title="13.11. The FEDERATED Storage Engine" href="http://dev.mysql.com/doc/refman/5.1/en/federated-storage-engine.html"><code style="color: #0e4075; font-size: 13px; background-color: white; font-weight: normal; font-family: monospace, fixed;">Federated</code></a> — Offers the ability to link separate MySQL servers to create one logical database from many physical servers. Very good for distributed or data mart environments.</p>
</li>
<li style="margin-bottom: 5px; margin-left: 8px; font-size: 14px; line-height: 14px; list-style-position: outside; list-style-image: none; list-style-type: disc; vertical-align: middle;">
<p style="font-size: 14px; line-height: 25px; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font-family: sans-serif; display: block; max-width: 720px; padding: 0px;"><a style="background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-decoration: underline; color: blue; background-position: initial initial;" title="Chapter 17. MySQL Cluster NDB 6.X/7.X" href="http://dev.mysql.com/doc/refman/5.1/en/mysql-cluster.html"><code style="color: #0e4075; font-size: 13px; background-color: white; font-weight: normal; font-family: monospace, fixed;">NDBCLUSTER</code></a> (also known as <code style="color: #0e4075; font-size: 13px; background-color: white; font-weight: normal; font-family: monospace, fixed;">NDB</code>) — This clustered database engine is particularly suited for applications that require the highest possible degree of uptime and availability.</p>
<div style="border-left-width: 5px; border-left-style: solid; border-left-color: black; padding-left: 5px; margin-right: 0.5in; margin-left: 0.5in;">
<h3 style="font-weight: bold; font-size: 13px; margin-top: 16px; margin-right: 0px; margin-bottom: 4px; margin-left: 0px; font-family: Helvetica, Arial, sans-serif;">Note</h3>
<p style="font-size: 14px; line-height: 25px; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font-family: sans-serif; display: block; max-width: 720px; padding: 0px;">The <code style="color: #0e4075; font-size: 13px; background-color: white; font-weight: normal; font-family: monospace, fixed;">NDBCLUSTER</code> storage engine is not supported in standard MySQL 5.1 releases. MySQL Cluster users wishing to upgrade from MySQL 5.0 should instead migrate to MySQL Cluster NDB 6.2 or 6.3; these are based on MySQL 5.1 but contain the latest improvements and fixes for <code style="color: #0e4075; font-size: 13px; background-color: white; font-weight: normal; font-family: monospace, fixed;">NDBCLUSTER</code>.</p>
</div>
</li>
<li style="margin-bottom: 5px; margin-left: 8px; font-size: 14px; line-height: 14px; list-style-position: outside; list-style-image: none; list-style-type: disc; vertical-align: middle;">
<p style="font-size: 14px; line-height: 25px; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font-family: sans-serif; display: block; max-width: 720px; padding: 0px;"><a style="background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-decoration: underline; color: blue; background-position: initial initial;" title="13.13. The CSV Storage Engine" href="http://dev.mysql.com/doc/refman/5.1/en/csv-storage-engine.html"><code style="color: #0e4075; font-size: 13px; background-color: white; font-weight: normal; font-family: monospace, fixed;">CSV</code></a> — The CSV storage engine stores data in text files using comma-separated values format. You can use the CSV engine to easily exchange data between other software and applications that can import and export in CSV format.</p>
</li>
<li style="margin-bottom: 5px; margin-left: 8px; font-size: 14px; line-height: 14px; list-style-position: outside; list-style-image: none; list-style-type: disc; vertical-align: middle;">
<p style="font-size: 14px; line-height: 25px; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font-family: sans-serif; display: block; max-width: 720px; padding: 0px;"><a style="background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-decoration: underline; color: blue; background-position: initial initial;" title="13.14. The BLACKHOLE Storage Engine" href="http://dev.mysql.com/doc/refman/5.1/en/blackhole-storage-engine.html"><code style="color: #0e4075; font-size: 13px; background-color: white; font-weight: normal; font-family: monospace, fixed;">Blackhole</code></a> — The Blackhole storage engine accepts but does not store data and retrievals always return an empty set. The functionality can be used in distributed database design where data is automatically replicated, but not stored locally.</p>
</li>
<li style="margin-bottom: 5px; margin-left: 8px; font-size: 14px; line-height: 14px; list-style-position: outside; list-style-image: none; list-style-type: disc; vertical-align: middle;">
<p style="font-size: 14px; line-height: 25px; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font-family: sans-serif; display: block; max-width: 720px; padding: 0px;"><a style="background-image: initial; background-repeat: initial; background-attachment: initial; -webkit-background-clip: initial; -webkit-background-origin: initial; background-color: transparent; text-decoration: underline; color: blue; background-position: initial initial;" title="13.10. The EXAMPLE Storage Engine" href="http://dev.mysql.com/doc/refman/5.1/en/example-storage-engine.html"><code style="color: #0e4075; font-size: 13px; background-color: white; font-weight: normal; font-family: monospace, fixed;">Example</code></a> — The Example storage engine is “<span>stub</span>” engine that does nothing. You can create tables with this engine, but no data can be stored in them or retrieved from them. The purpose of this engine is to serve as an example in the MySQL source code that illustrates how to begin writing new storage engines. As such, it is primarily of interest to developers.</p>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://freddysmind.com/blog/2009/07/mysql-storage-engines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux&#160;Commands</title>
		<link>http://freddysmind.com/blog/2009/06/186/</link>
		<comments>http://freddysmind.com/blog/2009/06/186/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 05:51:37 +0000</pubDate>
		<dc:creator>Freddy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Servers]]></category>

		<guid isPermaLink="false">http://freddysmind.com/blog/2009/06/186/</guid>
		<description><![CDATA[New Page! Linux Commands! Since I&#8217;m taking the plunge into Linux (Ubuntu Server 8.10), I thought keeping a running list of useful (and not) Linux commands might be helpful. Primarily because I forget everything&#8230; but also in case anyone else ever actually finds this blog]]></description>
			<content:encoded><![CDATA[<p>New Page! Linux Commands!</p>
<p>Since I&#8217;m taking the plunge into Linux (Ubuntu Server 8.10), I thought keeping a running list of useful (and not) Linux commands might be helpful.</p>
<p>Primarily because I forget everything&#8230; but also in case anyone else ever actually finds this blog <img src='http://freddysmind.com/blog/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://freddysmind.com/blog/2009/06/186/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Links for&#160;later</title>
		<link>http://freddysmind.com/blog/2009/06/links-for-later/</link>
		<comments>http://freddysmind.com/blog/2009/06/links-for-later/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 04:58:12 +0000</pubDate>
		<dc:creator>Freddy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://freddysmind.com/blog/?p=183</guid>
		<description><![CDATA[Not enough time to read before bed so here are some cool links for later: http://github.com/ &#8211; Code hosting in the cloud http://en.footiefox.com/ &#8211; Soccer updates in the browser http://www.webdigi.co.uk/blog/2009/run-php-on-the-google-app-engine/ &#8211; Short tutorial on Quercus and GAE (Google App Engine) http://www.caucho.com/resin-3.0/quercus/ &#8211; Java is attempting to eat PHP http://www.caucho.com/products/whitepapers/quercus.pdf &#8211; Munch munch munch http://blog.herbert.groot.jebbink.nl/ &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>Not enough time to read before bed so here are some cool links for later:</p>
<p><a href="http://github.com/">http://github.com/</a> &#8211; Code hosting in the cloud</p>
<p><a href="http://en.footiefox.com/">http://en.footiefox.com/</a> &#8211; Soccer updates in the browser</p>
<p><a href="http://www.webdigi.co.uk/blog/2009/run-php-on-the-google-app-engine/">http://www.webdigi.co.uk/blog/2009/run-php-on-the-google-app-engine/</a> &#8211; Short tutorial on Quercus and GAE (Google App Engine)</p>
<p><a href="http://www.caucho.com/resin-3.0/quercus/">http://www.caucho.com/resin-3.0/quercus/</a> &#8211; Java is attempting to eat PHP</p>
<p><a href="http://www.caucho.com/products/whitepapers/quercus.pdf">http://www.caucho.com/products/whitepapers/quercus.pdf</a> &#8211; Munch munch munch</p>
<p><a href="http://blog.herbert.groot.jebbink.nl/">http://blog.herbert.groot.jebbink.nl/</a> &#8211; PHP/<strong>SQL</strong> on GAE (Google App Engine), since GAE doesn&#8217;t support relational database models&#8230; weird</p>
<p><a href="http://code.google.com/p/google-wave-resources/issues/list">http://code.google.com/p/google-wave-resources/issues/list</a> &#8211; Just trying to keep up to date on Wave</p>
<p><a href="http://en.wikipedia.org/wiki/Java_Persistence_API">http://en.wikipedia.org/wiki/Java_Persistence_API</a> &#8211; Interesting&#8230; I really need to look-up the differences between Java SE and Java EE</p>
<p><a href="http://blog.caucho.com/?p=196">http://blog.caucho.com/?p=196</a> &#8211; Love this line &#8211; &#8220;Unfortunately, GAE doesn’t support MySQL, or any other relational database for that matter. <strong>We’re limited to Google Datastore, which is pretty much a big hash table.</strong>&#8221;</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 43px; width: 1px; height: 1px;">http://www.webdigi.co.uk/blog/2009/run-php-on-the-google-app-engine/</div>
]]></content:encoded>
			<wfw:commentRss>http://freddysmind.com/blog/2009/06/links-for-later/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ultimate&#160;Server</title>
		<link>http://freddysmind.com/blog/2009/06/ultimate-server/</link>
		<comments>http://freddysmind.com/blog/2009/06/ultimate-server/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 18:45:05 +0000</pubDate>
		<dc:creator>Freddy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://freddysmind.com/blog/?p=177</guid>
		<description><![CDATA[I just keep finding too much good stuff to do and try. I need more TIME. http://nanotux.com/blog/the-ultimate-server/ Then Symfony, then I&#8217;m going to code some schtuff. I&#8217;m thinking about using the LiveUser and LiveUserAdmin package from PEAR]]></description>
			<content:encoded><![CDATA[<p>I just keep finding too much good stuff to do and try. I need more TIME.</p>
<p><a href="http://nanotux.com/blog/the-ultimate-server/">http://nanotux.com/blog/the-ultimate-server/</a></p>
<p>Then Symfony, then I&#8217;m going to code some schtuff.</p>
<p>I&#8217;m thinking about using the <a href="http://pear.php.net/package/LiveUser">LiveUser</a> and <a href="http://pear.php.net/package/LiveUser_Admin">LiveUserAdmin</a> package from <a href="http://pear.php.net/">PEAR</a></p>
]]></content:encoded>
			<wfw:commentRss>http://freddysmind.com/blog/2009/06/ultimate-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lightppd aka&#160;Lighty</title>
		<link>http://freddysmind.com/blog/2009/06/lightppd-aka-lighty/</link>
		<comments>http://freddysmind.com/blog/2009/06/lightppd-aka-lighty/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 14:56:00 +0000</pubDate>
		<dc:creator>Freddy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Servers]]></category>

		<guid isPermaLink="false">http://freddysmind.com/blog/?p=172</guid>
		<description><![CDATA[http://www.lighttpd.net/ This looks like fun: http://stackoverflow.com/questions/420295/why-do-some-pdfs-hang-when-downloading-in-ie-when-served-by-lighttpd]]></description>
			<content:encoded><![CDATA[<p><a href="http://freddysmind.com/blog/wp-content/uploads/2009/06/lighty.png"><img class="alignnone size-medium wp-image-173" title="lighty" src="http://freddysmind.com/blog/wp-content/uploads/2009/06/lighty-300x149.png" alt="lighty" width="300" height="149" /></a></p>
<p><a href="http://www.lighttpd.net/">http://www.lighttpd.net/</a></p>
<p>This looks like fun:</p>
<p><a href="http://stackoverflow.com/questions/420295/why-do-some-pdfs-hang-when-downloading-in-ie-when-served-by-lighttpd">http://stackoverflow.com/questions/420295/why-do-some-pdfs-hang-when-downloading-in-ie-when-served-by-lighttpd</a></p>
]]></content:encoded>
			<wfw:commentRss>http://freddysmind.com/blog/2009/06/lightppd-aka-lighty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Here we&#160;go&#8230;</title>
		<link>http://freddysmind.com/blog/2009/06/here-we-go/</link>
		<comments>http://freddysmind.com/blog/2009/06/here-we-go/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 21:16:23 +0000</pubDate>
		<dc:creator>Freddy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://freddysmind.com/blog/?p=127</guid>
		<description><![CDATA[I absolutely hate Java and Javascript, for a variety of indefensible and poor reasons as most people would see it, but nonetheless I am annoyed by and scared of, Java and Javascript. Therefore&#8230; I am about to disembark on my most ambitious project yet to date. To make a fully functional app from bottom to [...]]]></description>
			<content:encoded><![CDATA[<p>I absolutely hate Java and Javascript, for a variety of indefensible and poor reasons as most people would see it, but nonetheless I am annoyed by and scared of, Java and Javascript.</p>
<p>Therefore&#8230; I am about to disembark on my most ambitious project yet to date. To make a fully functional app from bottom to top using:</p>
<p>MySQL database -&gt; Java servlets -&gt; AJAX front-end (Using GWT)</p>
<p>This will not be simple, this will not be fast, this will not be fun.</p>
<p>Ready&#8230;set&#8230;go!</p>
<p><strong>Edit:</strong> Crap I jumped the gun, need to learn more about GWT RPC and servlets and how to implement them, hooray!</p>
]]></content:encoded>
			<wfw:commentRss>http://freddysmind.com/blog/2009/06/here-we-go/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Content/Upload&#160;problem</title>
		<link>http://freddysmind.com/blog/2009/03/wordpress-contentupload-problem/</link>
		<comments>http://freddysmind.com/blog/2009/03/wordpress-contentupload-problem/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 00:27:14 +0000</pubDate>
		<dc:creator>Freddy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://freddysmind.com/blog/?p=3</guid>
		<description><![CDATA[So I moved this wordpress installation from a different folder on the webserver so that freddysmind.com would appropriately point to it… WordPress makes it relatively easy to do this by providing a wp-config.php file that you can define paths in. I went about changing and redefining the following four: define(’WP_SITEURL’, ‘http://www.freddysmind.com/wordpress’); define(’WP_HOME’, ‘http://www.freddysmind.com/wordpress’); define( ‘WP_CONTENT_URL’, [...]]]></description>
			<content:encoded><![CDATA[<p>So I moved this wordpress installation from a different folder on the webserver so that freddysmind.com would appropriately point to it…<br />
WordPress makes it relatively easy to do this by providing a wp-config.php file that you can define paths in.</p>
<p>I went about changing and redefining the following four:<br />
define(’WP_SITEURL’, ‘http://www.freddysmind.com/wordpress’);<br />
define(’WP_HOME’, ‘http://www.freddysmind.com/wordpress’);<br />
define( ‘WP_CONTENT_URL’, ‘http://www.freddysmind.com/wordpress/wp-content’);<br />
define( ‘WP_CONTENT_DIR’, $_SERVER['DOCUMENT_ROOT'] . ‘/wordpress/wp-content’ );</p>
<p>Piece of cake, I thought I was set. But apparently it doesn’t change the wordpress UPLOAD directory. I’m sure it’s the fact that I just missed the post that said I needed to include that as well. All of my uploads were disappearing.</p>
<p>You can change the uploads directory without having to define it in the wp-config.php file.<br />
Simply go under the Dashboard and go to Settings -&gt; Miscellaneous and you can redefine it there.</p>
]]></content:encoded>
			<wfw:commentRss>http://freddysmind.com/blog/2009/03/wordpress-contentupload-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting Up Host&#160;Gator</title>
		<link>http://freddysmind.com/blog/2008/12/setting-up-host-gator/</link>
		<comments>http://freddysmind.com/blog/2008/12/setting-up-host-gator/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 00:49:10 +0000</pubDate>
		<dc:creator>Freddy</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://freddysmind.com/blog/?p=30</guid>
		<description><![CDATA[Over the last 2 months I’ve done the following: Setup and paying a reoccuring monthly fee for Baby hosting services through HostGator.com Experimented and looked at various templates from: http://templates.hostgator.com/ Bought the following domain names: harrisburgvolleyball.com messiahmensvolleyball.com frederickfinery.com I’ve experimented and setup the following open source products using the script(s) provided at Hostgator under their [...]]]></description>
			<content:encoded><![CDATA[<div class="storycontent">
<div class="content clear-block">
<p>Over the last 2 months I’ve done the following:</p>
<p>Setup and paying a reoccuring monthly fee for Baby hosting services through HostGator.com</p>
<p>Experimented and looked at various templates from:<br />
<a title="http://templates.hostgator.com/" href="http://templates.hostgator.com/">http://templates.hostgator.com/</a></p>
<p>Bought the following domain names:<br />
harrisburgvolleyball.com<br />
messiahmensvolleyball.com<br />
frederickfinery.com</p>
<p>I’ve experimented and setup the following open source products using the script(s) provided at Hostgator under their cpanel:</p>
<p>phpBB<br />
b2evolution — <a title="www.messiahmensvolleyball.com" href="http://www.messiahmensvolleyball.com/">www.messiahmensvolleyball.com</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://freddysmind.com/blog/2008/12/setting-up-host-gator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
