[plt-scheme] Re: snooze installation : libsqlite3.so not found
> Example given here :
>
> http://planet.plt-scheme.org/package-source/untyped/snooze.plt/2/6/planet-docs/snooze/quick.html
>
> when run takes around 1 minute to produce the result.
>
> Is there some special configuration required to speed up the
> execution?
There shouldn't be. My first guess is it could be some issue to do
with compilation or PLaneT downloads on your system.
Here's a quick test. Put something like (printf "go!~n") right after
the (require ...) statements in your test module and run the code:
- If it takes a minute for "Go" to appear, the problem is likely to
be something other than DB related.
- If "Go" appears immediately and the other messages take a minute
to appear, it's probably a DB related problem.
At any rate, the first message to be delayed will give you a clue as
to what's going wrong.
If it's definitely DB related, post your code from the quick start in
case there's something I haven't thought of. It could be
a bug in Snooze or it could be related to your SQLite installation.
-- Dave