<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.3.2">
</HEAD>
<BODY>
Dear Daniel and Team,<BR>
<BR>
    I think the code below, which I have tested on SBCL, illustrated a typical problem that Daniel Salama introduces.  To paraphrase, you have a datatype (perhaps compound) which has a lot of slots; you have a GUI, perhaps web-based, that you use to both select or filter the large database, and to decide how to present sort the results.  I've written the below example as if you operating directly on the slots.  The fact that there are often intervening functions does not fundamentally change the problem.  (An example of this is storing a timestamp as an integer, but presenting it in a human-readable format.)<BR>
    SQL supports a powerful querying ability based on both selection and sorting.  One might think that this is an advantage of SQL; it is conventional reason that this is actually an advantage of using a relational database.  However, since LISP treats functions as first-class citizens that can be constructed dynamically, you actually have a full Turing-complete capabilities in doing queries that SQL cannot match.  This same ability applies to sorting; you can sort on any lexical order that you can program.<BR>
    In practice, however, one doesn't always need this power.  More typically, a user will select fields that they want to use to filter the results (that is, construct a query from), and perhaps how they would like the results to be sorted.  I assume that you know how to interpret an HTTP query or a McClim user interface or something to associate the GUI with underlying functions.  (My personal framework has a way to do this, and UCW is probably the most common or famous way to do it now.)<BR>
    The code below generated 100 random "users".  The bare act of defining this class defines accessor-functions that we can use in dynamically constructed lists as below: (list 'username-of 'balance-of).  I have written very small functions that use such lists either to define define "lexicographic" sort orders based on the order of the functions within the list.  That is, the primary sort criteria is the first function in the list, but of that function is equal for two values, the next is used and so on.  If you load the below code and execute (show-off) several times I think you will see what I mean.  You can then see how easily you can change the list of functions that are either in the selector or the sort criteria. If this is a web-based app, these list will be generated from the http-query, which is generated by the user's clicks.<BR>
    That is a "columnar" based approach; but it one can do something similar but more powerful based on computed functions that aren't based on individual columns, but on the entire data element.  For example "find users whose username is equal to their password" cannot be done in this way --- but can be done by just using a function #(lambda (x) (equal (username-of x) (password-of x)).  SQL can do this --- but LISP can could use any function there, such as "find users who have both short usernames and passwords that can be cracked by routine-x".<BR>
    Instead of adding things to the root or the store-controller directly, one would generally prefer<BR>
to use consistent classes:<BR>
<A HREF="http://common-lisp.net/project/elephant/doc/Persistent-Classes.html#Persistent-Classes">http://common-lisp.net/project/elephant/doc/Persistent-Classes.html#Persistent-Classes</A><BR>
<BR>
This doesn't change the nature of the problem.  If you like, you can create an index on any slot in a very convenient way: <A HREF="http://common-lisp.net/project/elephant/doc/Class-Indices.html#Class-Indices">http://common-lisp.net/project/elephant/doc/Class-Indices.html#Class-Indices</A> <BR>
This holds out the possibility of NOT having to iterate over the entire data-set, but rather honing in directly upon <BR>
matching values. (You can in fact create functional indexes based on any function at all in Elephant, which is something that SQL can't do conveniently, but the times you will need to do this are rare.)<BR>
<BR>
It would take maybe 20 minutes more coding to uses Ian's "get-instances-by-range" directly, and in a very efficient manner for performing the query (if the GUI elements correspond to the class's slots.)   This would be very efficient; but of course you should not do this until you know that this is really the bottleneck in your system.  By using cursors, you can avoid reading the entire data into memory, and thus process huge datasets.<BR>
    However, one should note that Ian's code makes creating indices on slots zero-effort; but indexes always have overhead.  The real question is: when will your queries actually utilize the index?  (That is, if you always select on one column/slot, then that one should be indexed....but if your query pattern is more complicated, it becomes fuzzy.)<BR>
    Let me know if you find this useful;  after I get feedback from you and Ian has made his post, perhaps we will put<BR>
this in the documentation.<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
(asdf:operate 'asdf:load-op :elephant-tests)<BR>
<BR>
(in-package "ELEPHANT-TESTS")<BR>
(setf *default-spec* *testbdb-spec*)<BR>
<BR>
(defclass User ()<BR>
 ((username :type 'string :initform "" :initarg :uname :accessor username-of)<BR>
  (password :type 'string :initform "" :initarg :pword :accessor password-of)<BR>
  (email :type 'string :initform "" :initarg :email :accessor email-of)   <BR>
  (fullname :type 'string :initform "" :initarg :fullname :accessor fullname-of)   <BR>
  (balance :type 'integer :initform 0 :initarg :balance :accessor balance-of)<BR>
  ))<BR>
<BR>
(defun random-letter ()<BR>
  (if (= 0 (random 2))<BR>
      (code-char (+ 65 (random 26)))<BR>
      (code-char (+ 97 (random 26)))))<BR>
<BR>
(defun random-password ()<BR>
  (let ((pw ""))<BR>
    (dotimes (i 8)<BR>
      (setf pw (format nil "~A~A" pw (random-letter))))<BR>
    pw))<BR>
<BR>
(defun random-users (n)<BR>
  (dotimes (x n)<BR>
    (let ((u (make-instance <BR>
              'User<BR>
              :uname (format nil "user~A" x)<BR>
              :pword (random-password)<BR>
              :email (format nil "user~A@.nowheresville.org" x)<BR>
              :fullname (format nil "~A~A ~A~A" (random-password) x (random-password) x)<BR>
              :balance (random 100))))<BR>
      (add-to-root x u)<BR>
      )<BR>
    ))<BR>
<BR>
(defun my-lexco (a b)<BR>
  (cond<BR>
    ((typep a 'string)<BR>
     (string< a b))<BR>
    ((typep a 'number)<BR>
     (< a b))<BR>
    (t<BR>
     (string< <BR>
      (format nil "~A" a)<BR>
      (format nil "~A" b)))<BR>
    ))<BR>
<BR>
(defun sort-by-columns (objs lst)<BR>
  (sort <BR>
   objs <BR>
   #'(lambda (a b) <BR>
       (let ((res t))<BR>
         (dolist (fun lst)<BR>
           (progn<BR>
             (format t "fun = ~A~%" fun)<BR>
             (let ((av (funcall fun  a))<BR>
                   (bv (funcall fun b ))) <BR>
               (if (equal av bv)<BR>
                   nil<BR>
                   (return (my-lexco av bv))))<BR>
           res))))<BR>
  ))<BR>
<BR>
(defun select-by-many-selectors (objs lst)<BR>
  (let ((ret nil))<BR>
    (dolist (o objs)<BR>
      (let ((selected t))<BR>
        (dolist (fun lst)<BR>
            (setf selected (and selected (funcall fun o)))<BR>
          )<BR>
      (if selected<BR>
          (push o ret))<BR>
      ))<BR>
    ret))<BR>
<BR>
(defun get-all-objects (n)<BR>
  (let ((res nil))<BR>
    (dotimes (x n)<BR>
      (push (get-from-root x) res))<BR>
    res))<BR>
<BR>
(defmethod print-object ((obj User) stream)<BR>
  (format stream <BR>
          "(username, password, email, fullname, balance) = (~A, ~A, ~A, ~A, ~A)" <BR>
          (username-of obj) <BR>
          (password-of obj)<BR>
          (email-of obj)<BR>
          (fullname-of obj)<BR>
          (balance-of obj)<BR>
          ))<BR>
<BR>
<BR>
(defun show-off ()<BR>
  (let ((n 100))<BR>
    (open-store *default-spec*)<BR>
;; Let's create 100 users....<BR>
    (random-users n)<BR>
    ;; Now we'll sort based on a list of functions..<BR>
     (sort-by-columns <BR>
      ;; But first we'll filter by a list of functions that must be true of each object...<BR>
      (select-by-many-selectors<BR>
       (get-all-objects n) <BR>
       ;; This list of functions (which has only <BR>
       (list #'(lambda (x) (< (balance-of x) 50))<BR>
             #'(lambda (x) (equal #\3 <BR>
                                  (aref (username-of x) <BR>
                                        (- (length (username-of x)) 1))))))<BR>
      ;; This is the list of functions that we will <BR>
      (list #'(lambda (x) (floor (/ (balance-of x) 10))) #'username-of))))<BR>
<BR>
</BODY>
</HTML>