Обсуждение: Store PDF files in PostgreDB

Поиск
Список
Период
Сортировка

Store PDF files in PostgreDB

От
Priyadharshini Vellaisamy
Дата:
Hi Team,

Please let m know can we store PDF files in PostgreDB ?

If so, can we retrieve it effectively?

Thanks,
Priya 

Re: Store PDF files in PostgreDB

От
Ron Johnson
Дата:
On Wed, Dec 6, 2023 at 9:39 AM Priyadharshini Vellaisamy <priya.cs.pa@gmail.com> wrote:
Hi Team,

Please let m know can we store PDF files in PostgreDB ?

You can store anything up to 1GB in Postgresql using data type bytea.
 
If so, can we retrieve it effectively?

Effectively?

(We've been storing images in PG for 11 years.)
 

Re: Store PDF files in PostgreDB

От
"Peter J. Holzer"
Дата:
On 2023-12-06 09:43:27 -0500, Ron Johnson wrote:
> On Wed, Dec 6, 2023 at 9:39 AM Priyadharshini Vellaisamy <priya.cs.pa@gmail.com
> > wrote:
>     Please let m know can we store PDF files in PostgreDB ?
>
>
> You can store anything up to 1GB in Postgresql using data type bytea.
>  
>
>     If so, can we retrieve it effectively?
>
>
> Effectively?
>
> (We've been storing images in PG for 11 years.)

They probably meant "efficiently".

The way large data is stored in PostgreSQL adds quite a bit of overhead
compared to a plain file in a file system. Plus you also have to deal
with the socket connection (unix or TCP) to the database.

That said, on my laptop (which is several years old and not very fast,
and I'm using Python, which isn't ideal for that job either) I can get
PDFs at somewhere between 47 MB/s and 77 MB/s. Which may or may not be
fast enough.

Another measure of "efficiency" might be how easy it is to use. Here,
bytea fields are very nice: They act just like varchar fields, no
special functions necessary.

        hp

--
   _  | Peter J. Holzer    | Story must make more sense than reality.
|_|_) |                    |
| |   | hjp@hjp.at         |    -- Charles Stross, "Creative writing
__/   | http://www.hjp.at/ |       challenge!"

Вложения