This file is indexed.

/usr/share/doc/node-node-redis/README is in node-node-redis 0.1.7-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
node-redis
==========

A redis client.

Usage
-----

    var redis = require('node-redis')

    var client = redis.createClient(port, host, auth)

    client.get('key', function (error, buffer) { ... })

    client.multi()
    client.lrange('key', 0, -1)
    client.lrange('key', [0, -1])
    client.exec(function (error, result) { result[0]; result[1] })

    client.subscribe('channel')
    client.on('message', function (buffer) { ... })
    client.on('message:channel', function (buffer) { ... })
    client.unsubscribe('channel')

    client.end()