ALT Linux Sisyphus discussions
 help / color / mirror / Atom feed
From: Mikhail Yakshin <greycat@altlinux.org>
To: ALT Linux Sisyphus discussion list <sisyphus@lists.altlinux.org>
Subject: Re: [sisyphus] amaroK
Date: Wed, 01 Nov 2006 16:35:23 +0300
Message-ID: <4548A29B.2090507@altlinux.org> (raw)
In-Reply-To: <200611011620.57154.icesik@mail.ru>

Igor Zubkov пишет:
> В сообщении от 1 ноября 2006 15:57 Alexey Tourbin написал(a):
>> Из git://git.altlinux.org/people/at/packages/sqlite3.git
>> можно попробовать sqlite3 с собранным full text search backend'ом.
>> Пакет называется sqlite3-fts2, ".load fts2" работает из коробки.
>> Примеры из http://www.sqlite.org/cvstrac/wiki?p=FtsOne тоже работают,
>> только вместо fts1, естественно, надо использовать fts2.
> 
> Кто не понял, то теперь в amaroK поиск будет работать лучше.
> 
> https://bugzilla.altlinux.org/show_bug.cgi?id=8799

Сильно сомневаюсь. amarok не использует эти "match", и уж точно не 
делает ".load fts2". Там обычные LIKE:

QString
CollectionDB::likeCondition( const QString &right, bool anyBegin, bool 
anyEnd )
{
     QString escaped = right;
     escaped.replace( '/', "//" ).replace( '%', "/%" ).replace( '_', "/_" );
     escaped = instance()->escapeString( escaped );

     QString ret;
     if ( DbConnection::postgresql == instance()->getDbConnectionType() )
         ret = " ILIKE "; //case-insensitive according to locale
     else
         ret = " LIKE ";

     ret += "'";
     if ( anyBegin )
             ret += "%";
     ret += escaped;
     if ( anyEnd )
             ret += "%";
     ret += "'";

     //Use / as the escape character
     ret += " ESCAPE '/' ";

     return ret;
}

По крайней мере 1.4.3.

-- 
WBR, GreyCat


      reply	other threads:[~2006-11-01 13:35 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-11-01 13:57 [sisyphus] sqlite3 full text search Alexey Tourbin
2006-11-01 14:20 ` [sisyphus] amaroK (was: Re: sqlite3 full text search) Igor Zubkov
2006-11-01 13:35   ` Mikhail Yakshin [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4548A29B.2090507@altlinux.org \
    --to=greycat@altlinux.org \
    --cc=sisyphus@lists.altlinux.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux Sisyphus discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/sisyphus/0 sisyphus/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 sisyphus sisyphus/ http://lore.altlinux.org/sisyphus \
		sisyphus@altlinux.ru sisyphus@altlinux.org sisyphus@lists.altlinux.org sisyphus@lists.altlinux.ru sisyphus@lists.altlinux.com sisyphus@linuxteam.iplabs.ru sisyphus@list.linux-os.ru
	public-inbox-index sisyphus

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.sisyphus


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git