Use 1586 or 1696, nothing in between

Viewing 5 posts - 11 through 15 (of 15 total)
  • Author
    Posts
  • #14248
    Anonymous
    Inactive

    Thanks for the tips. I read some previous threads and saw information about indexing the database by artist by doing

    sqlite> create index idx_artist on songs(artist);

    in sqlite (actually using sqlite3). I’ve done that, but I’m wondering if there is also a way to create a similar index that would help load a large playlist. I’ll admit that I don’t really understand the database organization here, so it’s not clear to me what the right sort of index (if any) would be.

    Given the slow CPU and small amount of memory (32 MB) in my NAS, I may just be out of luck, but let me know what you think.

    Thanks in advance for any clarifications.

    #14249
    rpedde
    Participant

    @elnjensen wrote:

    Thanks for the tips. I read some previous threads and saw information about indexing the database by artist by doing

    sqlite> create index idx_artist on songs(artist);

    in sqlite (actually using sqlite3). I’ve done that, but I’m wondering if there is also a way to create a similar index that would help load a large playlist. I’ll admit that I don’t really understand the database organization here, so it’s not clear to me what the right sort of index (if any) would be.

    Given the slow CPU and small amount of memory (32 MB) in my NAS, I may just be out of luck, but let me know what you think.

    Thanks in advance for any clarifications.

    Not really, the query for playlists is just plain ugly on a memory limited device.

    Hopefully, the new db backend will speed that up. Watch nightlies!

    #14250
    Anonymous
    Inactive

    Hopefully, the new db backend will speed that up. Watch nightlies!

    Thanks! Speaking of that, is there any way to be notified of new nightly builds or other releases (like a mailing list or RSS feed)? I looked around the website but didn’t find anything.

    #14251
    rpedde
    Participant

    @elnjensen wrote:

    Hopefully, the new db backend will speed that up. Watch nightlies!

    Thanks! Speaking of that, is there any way to be notified of new nightly builds or other releases (like a mailing list or RSS feed)? I looked around the website but didn’t find anything.

    Err, there was an rss feed on the *old* nighlies page, but I haven’t moved it to the new one. I’ll see if I can get that up tonight.

    – Ron

    #14252
    Anonymous
    Inactive

    You are right.

    I am used to thinking about this.

Viewing 5 posts - 11 through 15 (of 15 total)
  • The forum ‘Nightlies Feedback’ is closed to new topics and replies.