This file is indexed.

/usr/share/common-lisp/source/memstore/src/package.lisp is in cl-memstore 1.1.0-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
26
27
28
29
30
31
32
33
;; -*- Mode: Common-Lisp -*-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; FILE IDENTIFICATION
;;
;; Name:          package.lisp
;; Purpose:       Package definition for memstore package
;; Date Started:  July 2011
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

(in-package #:cl-user)

(defpackage #:memstore
  (:nicknames #:ms)
  (:use #:common-lisp #:kmrcl)
  (:documentation "This is the main memstore package.")
  (:import-from #:memcache #:*memcache* #:*use-pool* #:mc-get #:mc-store
                #:mc-del #:mc-incr #:mc-decr)
  (:import-from #:flexi-streams #:make-in-memory-input-stream
                #:make-in-memory-output-stream
                #:get-output-stream-sequence #:octet)
  (:export
   #:*compression-threshold*
   #:*compression-enabled*
   #:*compression-savings*
   #:*namespace*
   #:ms-serialize
   #:ms-deserialize
   #:ms-store
   #:ms-restore
   #:ms-del
   #:ms-incr
   #:ms-decr))