hi, i'm back again... aftering trying to get Fedora Core 3 to work for about a week, tired of trying for now, i'll get back at it when i learn more lisp :D..
so now i have taken ur earlier advice in downloading trial version of Allegro CL, do you know how i can integrate into my lisp in a box? since you have said it's possible, is it possible in the trial version?
thanks alot!
On Sun, 20 Feb 2005 17:28:45 -0500, Jason Wang randomtalk@gmail.com wrote:
hi, i'm back again... aftering trying to get Fedora Core 3 to work for about a week, tired of trying for now, i'll get back at it when i learn more lisp :D..
so now i have taken ur earlier advice in downloading trial version of Allegro CL, do you know how i can integrate into my lisp in a box? since you have said it's possible, is it possible in the trial version?
Looks so - their website
http://common-lisp.net/project/lispbox/
offers an "Allegro Trial Edition module," have you tried it? As they are on common-lisp.net they should also have a mailing list where you can ask if you're stuck.
Cheers, Edi.
mmm.. nope, wouldn't work.. i hit it's heap size limit :|..
just wondering, why wouldn't it work with clisp?
lol. thanks alot :D
On Sun, 20 Feb 2005 18:12:48 -0500, Jason Wang randomtalk@gmail.com wrote:
just wondering, why wouldn't it work with clisp?
CLISP doesn't have multi-threading.
hi, when i go to http://localhost/tbnl/test/test.lisp, i just get a TBNL Default Page, is that wat i suppose to get? since when i look in the source, i see alot of different stuff, wayy too complicated to be generating that simple page :|.. am i missing something here?
Hi!
On Sat, 5 Mar 2005 16:17:05 -0500, Jason Wang randomtalk@gmail.com wrote:
hi, when i go to http://localhost/tbnl/test/test.lisp, i just get a TBNL Default Page, is that wat i suppose to get?
Depends on what you've been doing.
since when i look in the source, i see alot of different stuff, wayy too complicated to be generating that simple page :|.. am i missing something here?
This looks as if you have done something like
(asdf:oos 'asdf:load-op :tbnl) (tbnl:start-tbnl)
while you were supposed to do
(asdf:oos 'asdf:load-op :tbnl-test) (tbnl:start-tbnl)
to see the test pages. Is that the case?
Cheers, Edi.
hi.... i looked through the test program, understand most of it :D mmm.. however, i am still hopelessly lost when trying to write a simple program, prob just my new experience with lisp, but, is there any tutorials online that'll bring you through the construction of a simple lisp web application?
i donno if allegroserve is almost the same as tbnl + apache, but i read alot of stuff about it in Practical Common Lisp.. However, i can't seem to get allegroserve to work for me..
i'm running the following packages for lisp web applications:
cl-base64-3.3.1 cl-ppcre-1.2.1 cl-who-0.4.4 kmrcl-1.78 md5-1.8.5 tbnl-0.3.10 url-rewrite
i've read about uncommon web, don't quite get what's good about it :|
and considers to use clsql for database (since i have been using mysql for 2 years, thought wouldn't be too hard to transfer my knowledge..), though reading Paul Graham's book, he said we should be just using flat files to store infomation.. i've went on http://bknr.net/ multiple times, though i don't get what they are doing.. mmm.. you told me to google for alternative ways of persisting data, though i tried multiple terms, turned up with not much helpful results, terms have tried "lisp web applications", "lisp + persist data", "lisp + web + data"... what terms do you suggest?
thanks alot for your help :D
On Sat, 5 Mar 2005 22:31:08 -0500, Jason Wang randomtalk@gmail.com wrote:
and considers to use clsql for database (since i have been using mysql for 2 years, thought wouldn't be too hard to transfer my knowledge..), though reading Paul Graham's book, he said we should be just using flat files to store infomation.. i've went on http://bknr.net/ multiple times, though i don't get what they are doing.. mmm.. you told me to google for alternative ways of persisting data, though i tried multiple terms, turned up with not much helpful results, terms have tried "lisp web applications", "lisp + persist data", "lisp + web
- data"... what terms do you suggest?
Non-SQL alternatives for persistent storage:
- Plob! - cl-elephant - bknr's persistent store - cl-prevalence - cl-store - Paul Foley's interface to Berkeley DB
Cheers, Edi.