Nikhil Marathe, Newlisp Bindings for Redis Database

Started by Kazimir Majorinc, January 21, 2010, 06:05:46 AM

Previous topic - Next topic

Kazimir Majorinc

Project site: http://bitbucket.org/nikhilm/newlisp-redis/overview/">http://bitbucket.org/nikhilm/newlisp-redis/overview/
http://kazimirmajorinc.com/\">WWW site; http://kazimirmajorinc.blogspot.com\">blog.

itistoday

#1
Neat, thanks for sharing this.
Get your Objective newLISP groove on.

jazper

#2
I was really pleased to find this, and I am very keen to use it.  However, to quote the old song "I can't get started".  I have started redis-server, and have redis-cli running.  Then I try to run the little sample from redis.lsp:
 (load "/home/myname/newlisp-redis/redis.lsp")
 (setf 'conn (redis))
 (:ping redis)
the error is:
ERR: list expected in function : : ((host "localhost") (port 6379))
Looking at the code in redis.lsp, it appears those two are supplied already in the definition:
;; @syntax (redis [host] [port])
;; Creates a new connection to a Redis instance
;; @return a new connection object or nil on error
(define (redis:redis (host "localhost") (port 6379))
  (let (sock (net-connect host port))
    (if (nil? sock)
      nil
      (list redis sock ""))))

The first line works. It returns (redis 3 "")which is consistent with what redis-cli responds when a connection is made.



Can someone please help?

Lutz

#3
I think redis.lsp is based on an older version of newLISP previous to 10.2 (after March 2010). In version 10.2 FOOP (the object system in newLISP) was changed to allow referencing the target object via a 'self' keyword. (self) returns the object of the message which can be changed when using destructive functions.



As an example:


; pre 10.2 of newLISP
(define (redis:query r command-str)
  (net-send (r 1) (append command-str redis:CRLF))
  (redis:read r))

; post 10.2 of newLISP (March 2010)
(define (redis:query command-str) ; the object r does not appear here
  (net-send (self 1) (append command-str redis:CRLF))
  (:read (self)))  ; message calls always must start with : colon


Basically inside the FOOP function definition the object is referenced by (self) which can be indexed too, e.g. (self 1) for the first member of the object after the class symbol in the obj list.



The message function call:


(:<message> <target-obj> <arg-1> <arg-2> ...)

and the definition of <message>:


(define (<class>:<message <arg-1> <arg-2>)
; reference <target-obj> using (self)
)


The constructors have not changed.



See also here:



http://www.newlisp.org/downloads/previous-release-notes/newLISP-10.2-Release.html">http://www.newlisp.org/downloads/previo ... lease.html">http://www.newlisp.org/downloads/previous-release-notes/newLISP-10.2-Release.html

jazper

#4
Thanks once again, Lutz.  



I have not done any FOOP.  Seems like I am about to start!  Because it appears a few tweaks of redis.lsp will be needed.