If you haven’t yet tried out #FamilySearch Full Text AI’s search feature yet, I wrote a blog post on how to find those genealogical gems. #AI #ArtificialIntelligence #geneadons #genealogy #FullText #familyhistory #CRAIGEN https://gptfamilytree.blogspot.com/2026/02/the-gamechanger-using-familysearch-full.html
The Gamechanger: Using FamilySearch Full Text AI

My FamilySearch Stats Several weeks ago, my husband asked me what I was working on. I replied that I was working on my genealogy and his res...

How to Fix FULLTEXT Not Using Your Index

Wrong query shape can bypass FULLTEXT entirely.

#mysql #fulltext #index #performance #howto #search

https://www.youtube.com/watch?v=4Fm189IlsOc

How to Fix FULLTEXT Not Using Your Index #howto

YouTube

🔍 / #software / #article

"Full-Text Search in SQLite: A Practical Guide"

> #FullText Search (FTS) in #SQLite is a powerful feature that enables efficient searching through large amounts of text data. Unlike traditional SQL LIKE queries that perform linear scans, #FTS uses sophisticated indexing techniques to deliver lightning-fast search results with ranking capabilities.

🐱🔗 https://laravista.altervista.org/CatLink/links/473

#catlink #softwarearticle

Full-Text Search in SQLite: A Practical Guide

Full-Text Search (FTS) in SQLite is a powerful feature that enables efficient searching through large amounts of text data. Unlike traditional SQL LIKE queries that perform linear scans, FTS uses sophisticated indexing techniques to deliver lightning-fast search results with ranking capabilities.

🔍 / #software / #article

"MiniSearch, a client-side full-text search engine"
by @lucaong

> This blog post is to introduce #MiniSearch, a #JavaScript library that provides client-side #FullText #search capabilities. It has zero runtime dependencies, and uses a space optimized index to support memory constrained environments like mobile browsers.

🐱🔗 https://laravista.altervista.org/CatLink/links/471

#catlink #softwarearticle

MiniSearch, a client-side full-text search engine

This blog post is to introduce MiniSearch, a JavaScript library that provides client-side full-text search capabilities. It has zero runtime dependencies, and uses a space optimized index to support memory constrained environments like mobile browsers.

PostgreSQL Full-Text Search: A Powerful Alternative to Elasticsearch for Small to Medium…

Deep Dive how PostgreSQL’s full-text search can eliminate the need for Elasticsearch in your next project

Medium
Für Anton haben wir ein sehr simples Open Source Paket geschrieben (pure PHP ohne weitere Abhängigkeiten). Nun werden nicht nur PDFs volltextindexiert, sondern auch Office Dokumente: MS- und LibreOffice Dokumente, Tabellen und Präsentationen. Mal sehen wie gut es in der Praxis klappt.
https://github.com/ottosmops/office2text #anton #office #archives #fulltext

Быстрый алгоритм fulltext-поиска без токенизации

Меня зовут Дмитрий Ольшанский, я ведущий инженер Т-Банка. Расскажу о новом (насколько мне известно) алгоритме поиска текста по шаблону. Такая задача возникла в рамках проекта Sage — observability-платформы от Т-Банка, для которой мы строим новый бэкэнд для структурированных логов, SageDB.

https://habr.com/ru/companies/tbank/articles/906990/

#поиск_текста #алгоритмы_поиска #fulltext

Быстрый алгоритм fulltext-поиска без токенизации

Меня зовут Дмитрий Ольшанский, я ведущий инженер Т-Банка. Расскажу о новом (насколько мне известно) алгоритме поиска текста по шаблону. Такая задача возникла в рамках проекта Sage —...

Хабр
Rearview - 增强你的浏览历史体验

支持长期存储、全文搜索、时间线视图和 AI 助手功能的浏览器扩展

A Sense of Doubt blog post #3707 - SoD Reprint of #1780 - "God is an Iron" by Spider Robinson

A Sense of Doubt blog post #3707 - SoD Reprint of #1780 - "God is an Iron" by Spider Robinson This is one of my favorite stories. It was and...

  • advanced search operators prototype. status: not quite ready for prime time.
    • has a bunch of goofy operators nobody but me will ever use, such as is:article
    • still missing some classics like lang:, domain:, before:, and after:, and some oddballs like is:bot (would require extra join) and sort: (would break ID-based paging)
    • needs docs, although i know where Past Vyr basically already wrote them: https://github.com/VyrCossont/mastodon/pull/8 😇
  • indexed full text search prototype. status: heretical.
    • only works on PostgreSQL: SQLite's full-text search is much fussier and requires using a "virtual table" and frankly i can't be bothered, at least tonight
    • direct port of https://github.com/VyrCossont/mastodon/pull/3 and has the same limitations: HTML isn't stripped, and media alt text and poll options aren't indexed
    • fixing that would start by adding a tsvector column that concatenates (with record separators? as an array?) the contents of filterableFields for a status, updates it every time the status or its attachments are edited, and GIN-indexes that column
    • ignores the whole issue of matching posts to language tags and language tags to PG text search configurations by assuming that everything is English
    • still massively faster than unindexed ILIKE that vanilla GTS uses
  • edit: fixed a backwards flag in has:media and related operators

    #GoToSocial #GTS #FullText #FullTextSearch

    Advanced search operators · VyrCossont/gotosocial@a87e9d5

    Fast, fun, ActivityPub server, powered by Go. Contribute to VyrCossont/gotosocial development by creating an account on GitHub.

    GitHub