English 中文(简体)
在数据库中传播图像
原标题:Saving images in database mysql

我的客户在php+mysql中制作了一个文字,直接在数据库中保存图像,每个图像都像www.example.com/image.php?id=421。

您认为这是一个非常错误的解决办法? 我是否应重建所有地点?

每天约有1,000次访问,数据库中约有600次图像。

最佳回答

图像文件是文档,除非有令人信服的理由将其储存在数据库中,否则它们所属的位置是档案系统,在多个机器中分发,这些机器由网络服务器直接使用,以及网络服务器支持的所有最新更新网站和节点,以取得更好的业绩。

如果图像数量预计会增加,预期在即将发行时会出现不同的图像规模(如th形图像等),则强烈建议计划将图像从 d带移至档案系统。

问题回答

是否有很好的理由将其存放在非行? 这样做可能有某些正当理由。 我假设这些图像不是显示网站本身所需的图像(即背景图像、信标内的东西)。

重建该场址。 它可能改善业绩,但每天有1,000次点击,可能不值得花费时间。 假设现场业绩是可以接受的,并不收取额外的招待费等。 在我重新设计该网站之前,我倾向于离开。

如果你读到`加沙'与评论的联系,那么它实际上会 b倒几个问题:

  • is there any problem with performance? [Y]
  • do you store any additional information, or just images itself? [Just images]
  • do you plan (or hope) to attract much more users in future? [Y]
  • are you limited in size of your db? [Y]

如果你用括号中的答复回答,那么你的网站将图像放在数据库中是好的,否则,你就能够离开数据库,节省一些时间和/或神经。

仅仅因为能够做到这一点,并不意味着应该这样做。

我总是储存数据库中图像(档案名称、地点、其他属性)的元数据,并在档案系统中外部储存图像。 数据库中实际上储存图像的好处甚微。 一旦他们在那里,他们就很难使用。

有好坏之处。 这取决于谁。 大约5年前,把所有图像都输入数据库,成为一切 r。

但是,由于服务器空间面积今天更大,这并不真正涉及节省空间。

一种负面看法是,你总是需要了解服务器边的节目,以便使用图像。 如果这一发展被我传给他人,就会证明存在问题。

就我所知,如果它发挥作用,它就会发挥作用,我看不出业绩问题——似乎非常快。





相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签