Re: BLOB's bypassing the OS Filesystem for better Image

Поиск
Список
Период
Сортировка
От Richard Huxton
Тема Re: BLOB's bypassing the OS Filesystem for better Image
Дата
Msg-id 426E045C.7010601@archonet.com
обсуждение исходный текст
Ответ на BLOB's bypassing the OS Filesystem for better Image loading speed?  ("apoc9009@yahoo.de" <apoc9009@yahoo.de>)
Ответы Re: BLOB's bypassing the OS Filesystem for better Image
Список pgsql-performance
apoc9009@yahoo.de wrote:
> Hi all again,
>
> My next queststion is dedicated to blobs in my  Webapplication (using
> Tomcat 5 and JDBC
> integrated a the J2EE Appserver JBoss).
>
> Filesystems with many Filesystem Objects can slow down the Performance
> at opening
> and reading Data.

Which filesystems? I know ext2 used to have issues with many-thousands
of files in one directory, but that was a directory scanning issue
rather than file reading.

> My Question:
> Can i speedup my Webapplication if i store my JPEG Images with small
> sizes inside my PostgreSQL Database (on verry large Databasis over 1 GByte
> and above without Images at this time!)

No. Otherwise the filesystem people would build their filesystems on top
of PostgreSQL not the other way around. Of course, if you want image
updates to be part of a database transaction, then it might be worth
storing them in the database.

> I hope some Peoples can give me a Tip or Hint where in can
> some usefull Information about it!

Look into having a separate server (process or actual hardware) to
handle requests for static text and images. Keep the Java server for
actually processing data.

--
   Richard Huxton
   Archonet Ltd

В списке pgsql-performance по дате отправления:

Предыдущее
От: "apoc9009@yahoo.de"
Дата:
Сообщение: BLOB's bypassing the OS Filesystem for better Image loading speed?
Следующее
От: "apoc9009@yahoo.de"
Дата:
Сообщение: Re: BLOB's bypassing the OS Filesystem for better Image