Click here to Skip to main content
15,896,154 members
Home / Discussions / Database
   

Database

 
QuestionRe: can I trust Triggers? Pin
Eddy Vluggen9-Apr-14 3:00
professionalEddy Vluggen9-Apr-14 3:00 
AnswerRe: can I trust Triggers? Pin
jschell10-Apr-14 8:53
jschell10-Apr-14 8:53 
GeneralRe: can I trust Triggers? Pin
Jassim Rahma12-Apr-14 1:36
Jassim Rahma12-Apr-14 1:36 
QuestionTrigger on select Pin
Jassim Rahma9-Apr-14 1:00
Jassim Rahma9-Apr-14 1:00 
AnswerRe: Trigger on select Pin
thatraja9-Apr-14 2:13
professionalthatraja9-Apr-14 2:13 
AnswerRe: Trigger on select Pin
Eddy Vluggen9-Apr-14 3:00
professionalEddy Vluggen9-Apr-14 3:00 
QuestionMongoDB to Cache MariaDB? Pin
Marco Bertschi8-Apr-14 20:34
protectorMarco Bertschi8-Apr-14 20:34 
AnswerRe: MongoDB to Cache MariaDB? Pin
Jörgen Andersson8-Apr-14 22:27
professionalJörgen Andersson8-Apr-14 22:27 
GeneralRe: MongoDB to Cache MariaDB? Pin
Marco Bertschi8-Apr-14 22:48
protectorMarco Bertschi8-Apr-14 22:48 
GeneralRe: MongoDB to Cache MariaDB? Pin
Jörgen Andersson8-Apr-14 23:06
professionalJörgen Andersson8-Apr-14 23:06 
GeneralRe: MongoDB to Cache MariaDB? Pin
Marco Bertschi9-Apr-14 2:01
protectorMarco Bertschi9-Apr-14 2:01 
GeneralRe: MongoDB to Cache MariaDB? Pin
Eddy Vluggen9-Apr-14 0:32
professionalEddy Vluggen9-Apr-14 0:32 
GeneralRe: MongoDB to Cache MariaDB? Pin
Marco Bertschi9-Apr-14 1:59
protectorMarco Bertschi9-Apr-14 1:59 
GeneralRe: MongoDB to Cache MariaDB? Pin
Eddy Vluggen9-Apr-14 3:00
professionalEddy Vluggen9-Apr-14 3:00 
Marco Bertschi wrote:
What I think is that it becomes slow if I load and save big photo raw data frequently.
Why?

Databases (both local and server) are meant to handle data. That includes blobs.

Yes, modifying a blob might be slower than a file-system; especially if the blob is doubled in size. Still, I did not notice any delay when I hooked up the dokan-driver to Sql Server. That made my db with blobs accesible using explorer, and I created, opened and dropped the connection on every read. Reading a blob is done in 4k pieces. Copying a file to/fro the DB still happened at 40 MB/sec (the max for that driver). It was fast enough on my testmachine (with 1 Gb RAM) to simply unzip a large file IN the folder that was linked to a table.

Depending on your network, it may be very expensive to fetch a large blob (say 250 Mb on a 10 Mb network). In that case you mimick IIS - you fetch a picture once, and if it's fetched again you send a HTML 304.
Bastard Programmer from Hell Suspicious | :suss:
If you can't read my code, try converting it here[^]

GeneralRe: MongoDB to Cache MariaDB? Pin
Marco Bertschi9-Apr-14 3:25
protectorMarco Bertschi9-Apr-14 3:25 
GeneralRe: MongoDB to Cache MariaDB? Pin
Jörgen Andersson9-Apr-14 5:03
professionalJörgen Andersson9-Apr-14 5:03 
GeneralRe: MongoDB to Cache MariaDB? Pin
Marco Bertschi9-Apr-14 6:25
protectorMarco Bertschi9-Apr-14 6:25 
GeneralRe: MongoDB to Cache MariaDB? Pin
Jörgen Andersson9-Apr-14 6:48
professionalJörgen Andersson9-Apr-14 6:48 
GeneralRe: MongoDB to Cache MariaDB? Pin
Marco Bertschi9-Apr-14 7:55
protectorMarco Bertschi9-Apr-14 7:55 
GeneralRe: MongoDB to Cache MariaDB? Pin
Jörgen Andersson9-Apr-14 8:09
professionalJörgen Andersson9-Apr-14 8:09 
GeneralRe: MongoDB to Cache MariaDB? Pin
jschell10-Apr-14 9:05
jschell10-Apr-14 9:05 
SuggestionRe: MongoDB to Cache MariaDB? Pin
Eddy Vluggen9-Apr-14 6:52
professionalEddy Vluggen9-Apr-14 6:52 
AnswerRe: MongoDB to Cache MariaDB? Pin
jschell10-Apr-14 8:57
jschell10-Apr-14 8:57 
GeneralRe: MongoDB to Cache MariaDB? Pin
Marco Bertschi10-Apr-14 9:40
protectorMarco Bertschi10-Apr-14 9:40 
GeneralRe: MongoDB to Cache MariaDB? Pin
jschell11-Apr-14 8:53
jschell11-Apr-14 8:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.