summaryrefslogtreecommitdiff
path: root/linkshorter/db.php
blob: 4dcf58ab5bed38bb13ceb9145357fb6865df994c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

$db = new Redis();
$db->connect('/var/run/redis/redis.sock');

try { 
	$db->ping();
} catch (Exception $e){
	do_output("<p>No connection to the database established.</p>", "500 Server Failure", false, "<h1>Redis went away</h1>");
}

try { 
	$db->select(1);
} catch (Exception $e){
	do_output("<p>No connection to the database established.</p>", "500 Server Failure", false, "<h1>Redis went away</h1>");
}