[RELEASE] MyPicsDB: Pictures DB with EXIF, IPTC & XMP tags

  Thread Rating:
  • 1 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
grrr Offline
Junior Member
Posts: 2
Joined: May 2013
Reputation: 0
Post: #321
thanks for you reply.

first all i did not mean my words as criticism but report of issue(s) found and quick and very easy improvement idea (*).

now, i think only MySQL version matters which is 5.6 and btw running on FreeBSD.

(*) i think from this
Code:
file=open(filename, 'rb')
file.read()
to this
Code:
f=open(filename, 'rb')
file = mmap.mmap(f.fileno(), 0)
file.read()
does not require too much programming but really speed up things. Up to you to consider or not Wink
find quote
Xycl Offline
Senior Member
Posts: 248
Joined: Feb 2012
Reputation: 6
Location: Germany
Post: #322
I didn't see any negative criticism in your bug report Wink
All ideas to improve MyPicsDB are really welcome wether it's usabilty, performance or whatever.

But I've a problem:
The time which I can spend on this project

Your MySql issue with Linux.
There is a new 2.2.10 version which I tested with my CentOS fileserver.
The create database statement uses a different collation!
It works but of course I cannot guarantee that everything will work.

Main page: https://github.com/Xycl
Repository: Xycl Repository
How to submit a log file: XBMC-Wiki
(This post was last modified: Yesterday 09:12 by Xycl.)
find quote
Post Reply