1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-04 15:02:09 +03:00

Small style changes

This commit is contained in:
Ruben Bridgewater
2015-10-04 21:44:52 +02:00
parent 2fc54ece57
commit 7922d4eb85
28 changed files with 386 additions and 390 deletions

View File

@@ -2,10 +2,10 @@
// Read a file from disk, store it in Redis, then read it back from Redis.
var redis = require("redis"),
var redis = require('redis'),
client = redis.createClient(),
fs = require("fs"),
filename = "kids_in_cart.jpg";
fs = require('fs'),
filename = 'kids_in_cart.jpg';
// Get the file I use for testing like this:
// curl http://ranney.com/kids_in_cart.jpg -o kids_in_cart.jpg
@@ -14,18 +14,18 @@ var redis = require("redis"),
// Read a file from fs, store it in Redis, get it back from Redis, write it back to fs.
fs.readFile(filename, function (err, data) {
if (err) throw err;
console.log("Read " + data.length + " bytes from filesystem.");
console.log('Read ' + data.length + ' bytes from filesystem.');
client.set(filename, data, redis.print); // set entire file
client.get(filename, function (err, reply) { // get entire file
if (err) {
console.log("Get error: " + err);
console.log('Get error: ' + err);
} else {
fs.writeFile("duplicate_" + filename, reply, function (err) {
fs.writeFile('duplicate_' + filename, reply, function (err) {
if (err) {
console.log("Error on write: " + err);
console.log('Error on write: ' + err);
} else {
console.log("File written.");
console.log('File written.');
}
client.end();
});