Re: [sqlite] Can sqlite access storage system directly?

2014-04-04 Thread Richard Hipp
On Fri, Apr 4, 2014 at 4:52 AM, 김병준  wrote:

> After spend quite long time search for regarding to use file I/O in
> SQLite,
>
> I've found that through the VFS layer is the only way go into the
> kernel.
>
> However I am wandering about if there is other method to detour
> filesystem,
>
> so that SQLite is directly interface with device driver layer.
>

http://www.sqlite.org/src/artifact/0396f220561f3b4e?ln=15-17


-- 
D. Richard Hipp
d...@sqlite.org
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] Can sqlite access storage system directly?

2014-04-04 Thread Stephan Beal
On Fri, Apr 4, 2014 at 10:52 AM, 김병준  wrote:

> filesystem help, but there will be performance gain. ( e.g. From not
> using Journaling
>

See:

http://www.sqlite.org/pragma.html#pragma_journal_mode


-- 
- stephan beal
http://wanderinghorse.net/home/stephan/
http://gplus.to/sgbeal
"Freedom is sloppy. But since tyranny's the only guaranteed byproduct of
those who insist on a perfect world, freedom will have to do." -- Bigby Wolf
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


[sqlite] Can sqlite access storage system directly?

2014-04-04 Thread 김병준
After spend quite long time search for regarding to use file I/O in
SQLite,
   
I've found that through the VFS layer is the only way go into the
kernel.
   
However I am wandering about if there is other method to detour
filesystem,
   
so that SQLite is directly interface with device driver layer.
   
I think there might be number of disadvantage if SQLite run without
   
filesystem help, but there will be performance gain. ( e.g. From not
using
   
Journaling and eliminate block I/O overhead.)
   
Is there anyone have tried it or know about method? 
 
   
it would very helpful at least tell me whether it is possible or not.


___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users