That's not quite the same thing. A SQL LIKE operator is a pattern-match; it doesn't use an index at all, but has to brute-force scan all of the possibilities in O(n) time. You can do the same thing yourself by creating a view that emits that 'name' property as the key or value, then iterating over all the query rows looking for matches.
Full-text search is much faster because it uses an index, but it's word-based. For example, searching for "hat" wouldn't find the word "what" because they're different words.
—Jens