Re: [PERFORM] postgresql performance with multimedia

2004-08-26 Thread my ho
Hi, > For your "streaming" purposes I strongly recommend > you do it in your > application with the appropriate thread model. A > relational database > management system is not a multimedia cache. That's actually what i plan to do with postgreSQL, maybe tailor it to suit with a multimedia stream

OT: Network config (WAS: RE: [PERFORM] postgresql performance with multimedia)

2004-08-25 Thread Leeuw van der, Tim
Hi, We're now getting very much off-topic about configuration of networking, but: - What is your OS? - What output do you get when you type 'ping localhost' in any command-prompt? -Original Message- [...] > I tried to put my_ip instead of "localhost" in > bufmng.c and it seems to work

Re: [PERFORM] postgresql performance with multimedia

2004-08-25 Thread Jan Wieck
On 8/25/2004 2:54 AM, my ho wrote: Tom Lane answered to that question. The code in question does resolve "localhost" with getaddrinfo() and then tries to create and bind a UDP socket to all returned addresses. For some reason "localhost" on your system resolves to an address that is not availabl

Re: [PERFORM] postgresql performance with multimedia

2004-08-25 Thread Gregory S. Williamson
--Original Message- From: my ho [mailto:[EMAIL PROTECTED] Sent: Tue 8/24/2004 11:54 PM To: [EMAIL PROTECTED] Cc: Jan Wieck Subject: Re: [PERFORM] postgresql performance with multimedia > Tom Lane answered to that question. The code in > question does resolve > "loc

Re: [PERFORM] postgresql performance with multimedia

2004-08-24 Thread my ho
> Tom Lane answered to that question. The code in > question does resolve > "localhost" with getaddrinfo() and then tries to > create and bind a UDP > socket to all returned addresses. For some reason > "localhost" on your > system resolves to an address that is not available > for bind(2). I t

Re: [PERFORM] postgresql performance with multimedia

2004-08-24 Thread Jan Wieck
On 8/24/2004 1:08 AM, my ho wrote: --- Jan Wieck <[EMAIL PROTECTED]> wrote: On 8/17/2004 8:44 PM, my thi ho wrote: > Hi, > I am working on a project which explore postgresql to > store multimedia data. > In details, i am trying to work with the buffer > management part of postgres source code. And

Re: [PERFORM] postgresql performance with multimedia

2004-08-23 Thread my ho
--- Jan Wieck <[EMAIL PROTECTED]> wrote: > On 8/17/2004 8:44 PM, my thi ho wrote: > > > Hi, > > I am working on a project which explore postgresql > to > > store multimedia data. > > In details, i am trying to work with the buffer > > management part of postgres source code. And try > to > > im

Re: [PERFORM] postgresql performance with multimedia

2004-08-18 Thread Jan Wieck
On 8/17/2004 8:44 PM, my thi ho wrote: Hi, I am working on a project which explore postgresql to store multimedia data. In details, i am trying to work with the buffer management part of postgres source code. And try to improve the performance. I had search on the web but could not find much usefu

[PERFORM] postgresql performance with multimedia

2004-08-17 Thread my thi ho
Hi, I am working on a project which explore postgresql to store multimedia data. In details, i am trying to work with the buffer management part of postgres source code. And try to improve the performance. I had search on the web but could not find much usefull information. It would be great if a