Re: [racket-users] Looking for an in-memory databases library to explore data

2015-10-06 Thread Vincent St-Amour
On Tue, 06 Oct 2015 05:51:50 -0500, Paolo Giarrusso wrote: > > On Monday, October 5, 2015 at 10:55:07 PM UTC+2, Vincent St-Amour wrote: > > I'm not aware of a complete querying solution, but here are a few > > pointers that may be useful. > > > > - If you store your data as lists, you can go a lo

Re: [racket-users] Looking for an in-memory databases library to explore data

2015-10-06 Thread Paolo Giarrusso
On Monday, October 5, 2015 at 10:55:07 PM UTC+2, Vincent St-Amour wrote: > I'm not aware of a complete querying solution, but here are a few > pointers that may be useful. > > - If you store your data as lists, you can go a long way with standard > list combinators, such as `map`, `filter` and `

Re: [racket-users] Looking for an in-memory databases library to explore data

2015-10-05 Thread Vincent St-Amour
I'm not aware of a complete querying solution, but here are a few pointers that may be useful. - If you store your data as lists, you can go a long way with standard list combinators, such as `map`, `filter` and `fold`. `group-by` (from `racket/list` if you're running from git head, or `unstab

[racket-users] Looking for an in-memory databases library to explore data

2015-10-04 Thread LeAnthony
I have some related data in multiple tables. I do like the way Peter Seibel utilized simple database code in PCL. Looking to do something like that in Racket. Create an in-memory databases and run some database functions on it to explore the data. Something like LambdaLite or cl-store in Comm