newLISP Fan Club

Forum => So, what can you actually DO with newLISP? => Topic started by: Kazimir Majorinc on January 21, 2010, 06:05:46 AM

Title: Nikhil Marathe, Newlisp Bindings for Redis Database
Post by: Kazimir Majorinc on January 21, 2010, 06:05:46 AM
Project site: http://bitbucket.org/nikhilm/newlisp-redis/overview/
Title: Re: Nikhil Marathe, Newlisp Bindings for Redis Database
Post by: itistoday on January 22, 2010, 11:56:05 AM
Neat, thanks for sharing this.
Title: Re: Nikhil Marathe, Newlisp Bindings for Redis Database
Post by: jazper on May 01, 2012, 01:22:05 PM
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?
Title: Re: Nikhil Marathe, Newlisp Bindings for Redis Database
Post by: Lutz on May 01, 2012, 03:05:09 PM
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
Title: Re: Nikhil Marathe, Newlisp Bindings for Redis Database
Post by: jazper on May 02, 2012, 07:10:52 AM
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.