* [gentoo-user] in-memory database
@ 2010-02-11 17:27 Hung Dang
2010-02-11 17:50 ` Alexander
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Hung Dang @ 2010-02-11 17:27 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 214 bytes --]
Hi all,
I am looking for an open source in-memory database for data mining purpose.
I have tried to look into /usr/portage/dev-db/ and have not found any
in-memory package. Any suggestion?
Thanks in advance
Hung
[-- Attachment #2: Type: text/html, Size: 244 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-user] in-memory database
2010-02-11 17:27 [gentoo-user] in-memory database Hung Dang
@ 2010-02-11 17:50 ` Alexander
2010-02-11 18:28 ` Hung Dang
2010-02-11 18:45 ` Helmut Jarausch
2010-02-12 17:56 ` [gentoo-user] " Doug O'Neal
2 siblings, 1 reply; 8+ messages in thread
From: Alexander @ 2010-02-11 17:50 UTC (permalink / raw
To: gentoo-user
On Thursday 11 February 2010 20:27:15 Hung Dang wrote:
> Hi all,
>
> I am looking for an open source in-memory database for data mining purpose.
> I have tried to look into /usr/portage/dev-db/ and have not found any
> in-memory package. Any suggestion?
>
> Thanks in advance
> Hung
>
What kind of database are you looking for? There is several ways of in-memory
db: Berkley DB, native languages hash tables and etc
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-user] in-memory database
2010-02-11 17:50 ` Alexander
@ 2010-02-11 18:28 ` Hung Dang
0 siblings, 0 replies; 8+ messages in thread
From: Hung Dang @ 2010-02-11 18:28 UTC (permalink / raw
To: gentoo-user
[-- Attachment #1: Type: text/plain, Size: 749 bytes --]
Hi Alexander,
Thanks a lot for your quick reply. I just start my project then I might have
to try some in-memory dbs and see which one is suitable for my application.
Thanks
Hung
On Thu, Feb 11, 2010 at 10:50 AM, Alexander <b3nder@yandex.ru> wrote:
> On Thursday 11 February 2010 20:27:15 Hung Dang wrote:
> > Hi all,
> >
> > I am looking for an open source in-memory database for data mining
> purpose.
> > I have tried to look into /usr/portage/dev-db/ and have not found any
> > in-memory package. Any suggestion?
> >
> > Thanks in advance
> > Hung
> >
>
> What kind of database are you looking for? There is several ways of
> in-memory
> db: Berkley DB, native languages hash tables and etc
>
>
--
Hung Dang
New Mexico State University
[-- Attachment #2: Type: text/html, Size: 1158 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-user] in-memory database
2010-02-11 17:27 [gentoo-user] in-memory database Hung Dang
2010-02-11 17:50 ` Alexander
@ 2010-02-11 18:45 ` Helmut Jarausch
2010-02-11 19:55 ` Joshua Murphy
2010-02-11 20:04 ` Ognjen Bezanov
2010-02-12 17:56 ` [gentoo-user] " Doug O'Neal
2 siblings, 2 replies; 8+ messages in thread
From: Helmut Jarausch @ 2010-02-11 18:45 UTC (permalink / raw
To: gentoo-user
On 11 Feb, Hung Dang wrote:
> Hi all,
>
> I am looking for an open source in-memory database for data mining purpose.
> I have tried to look into /usr/portage/dev-db/ and have not found any
> in-memory package. Any suggestion?
>
You might use dev-db/sqlite and put its files on a tmpfs directory.
Helmut.
--
Helmut Jarausch
Lehrstuhl fuer Numerische Mathematik
RWTH - Aachen University
D 52056 Aachen, Germany
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-user] in-memory database
2010-02-11 18:45 ` Helmut Jarausch
@ 2010-02-11 19:55 ` Joshua Murphy
2010-02-11 20:04 ` Ognjen Bezanov
1 sibling, 0 replies; 8+ messages in thread
From: Joshua Murphy @ 2010-02-11 19:55 UTC (permalink / raw
To: gentoo-user
On Thu, Feb 11, 2010 at 1:45 PM, Helmut Jarausch
<jarausch@igpm.rwth-aachen.de> wrote:
> On 11 Feb, Hung Dang wrote:
>> Hi all,
>>
>> I am looking for an open source in-memory database for data mining purpose.
>> I have tried to look into /usr/portage/dev-db/ and have not found any
>> in-memory package. Any suggestion?
>>
>
> You might use dev-db/sqlite and put its files on a tmpfs directory.
> Helmut.
>
> --
> Helmut Jarausch
>
> Lehrstuhl fuer Numerische Mathematik
> RWTH - Aachen University
> D 52056 Aachen, Germany
Or, even, just use SQLite's support for in-memory databases... a
little about that's here:
http://www.sqlite.org/cvstrac/wiki?p=InMemoryDatabase
--
Poison [BLX]
Joshua M. Murphy
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-user] in-memory database
2010-02-11 18:45 ` Helmut Jarausch
2010-02-11 19:55 ` Joshua Murphy
@ 2010-02-11 20:04 ` Ognjen Bezanov
1 sibling, 0 replies; 8+ messages in thread
From: Ognjen Bezanov @ 2010-02-11 20:04 UTC (permalink / raw
To: gentoo-user
Helmut Jarausch wrote:
> On 11 Feb, Hung Dang wrote:
>> Hi all,
>>
>> I am looking for an open source in-memory database for data mining purpose.
>> I have tried to look into /usr/portage/dev-db/ and have not found any
>> in-memory package. Any suggestion?
>>
>
> You might use dev-db/sqlite and put its files on a tmpfs directory.
> Helmut.
>
SQLITE supports holding a database in memory. I never did it in python,
but in PHP if you put "memory" in the connect string rather than a
filename, the database will reside solely in RAM.
As this is a sqlite feature rather than a PHP feature, it should work
under python as well (but I've never done it, so I don't know the syntax).
Ognjen.
^ permalink raw reply [flat|nested] 8+ messages in thread
* [gentoo-user] Re: in-memory database
2010-02-11 17:27 [gentoo-user] in-memory database Hung Dang
2010-02-11 17:50 ` Alexander
2010-02-11 18:45 ` Helmut Jarausch
@ 2010-02-12 17:56 ` Doug O'Neal
2010-02-13 1:52 ` [gentoo-user] Re: in-memory database -> SOLVED Hung Dang
2 siblings, 1 reply; 8+ messages in thread
From: Doug O'Neal @ 2010-02-12 17:56 UTC (permalink / raw
To: gentoo-user
On 02/11/2010 12:27 PM, Hung Dang wrote:
> Hi all,
>
> I am looking for an open source in-memory database for data mining
> purpose. I have tried to look into /usr/portage/dev-db/ and have not
> found any in-memory package. Any suggestion?
>
> Thanks in advance
> Hung
mysql has a `memory' table engine.
Doug
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-user] Re: in-memory database -> SOLVED
2010-02-12 17:56 ` [gentoo-user] " Doug O'Neal
@ 2010-02-13 1:52 ` Hung Dang
0 siblings, 0 replies; 8+ messages in thread
From: Hung Dang @ 2010-02-13 1:52 UTC (permalink / raw
To: gentoo-user
Hi all,
Thank a lot for your advices. I will try both mysql and sqlite to see
which one is better for our purpose.
Have a nice weekend,
Hung
On 02/12/10 10:56, Doug O'Neal wrote:
> On 02/11/2010 12:27 PM, Hung Dang wrote:
>> Hi all,
>>
>> I am looking for an open source in-memory database for data mining
>> purpose. I have tried to look into /usr/portage/dev-db/ and have not
>> found any in-memory package. Any suggestion?
>>
>> Thanks in advance
>> Hung
>
> mysql has a `memory' table engine.
>
> Doug
>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2010-02-13 1:53 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-11 17:27 [gentoo-user] in-memory database Hung Dang
2010-02-11 17:50 ` Alexander
2010-02-11 18:28 ` Hung Dang
2010-02-11 18:45 ` Helmut Jarausch
2010-02-11 19:55 ` Joshua Murphy
2010-02-11 20:04 ` Ognjen Bezanov
2010-02-12 17:56 ` [gentoo-user] " Doug O'Neal
2010-02-13 1:52 ` [gentoo-user] Re: in-memory database -> SOLVED Hung Dang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox