Found a total of 10000 related content
Geospatial Search with SOLR and Solarium
Article Introduction:This article delves into geospatial search within Apache Solr and its interaction with the Solarium PHP library. Solr, a powerful search service, offers features like faceted search and result highlighting. Solarium simplifies Solr integration in PH
2025-02-19
comment 0
1045
Part Implementing Vector Search with Ollama
Article Introduction:Part 1 covered PostgreSQL with pgvector setup, and Part 2 implemented vector search using OpenAI embeddings. This final part demonstrates how to run vector search locally using Ollama! ?
Contents
Contents
Why Ollama?
Setting Up Ollama
2024-11-29
comment 0
271
How to Create a CSS3 Wave Shape with a Border?
Article Introduction:CSS3 Wave Shape with BorderIn this query, the user desires to create a wave shape with a border using CSS3. Despite attempting to use CSS3 Shapes,...
2024-11-17
comment 0
449
Implementing Search Functionality with SQL
Article Introduction:The core of implementing SQL search function is to write efficient SELECT statements and filter data in combination with appropriate conditions. 1. Basic search uses WHERE and LIKE, such as SELECT*FROMusersWHEREname='John' or LIKE for fuzzy matching, but you need to pay attention to performance issues. 2. To improve efficiency, indexes should be used reasonably, such as adding indexes to commonly used search fields, but the leading wildcard of LIKE will affect the index effect. 3. Advanced search can use full-text indexes, such as MySQL's CREATEFULLTEXTINDEX and MATCH...AGAINST statements, suitable for complex text search scenarios. 4. Comprehensive search involves multiple conditional combination queries, please pay attention to
2025-07-18
comment 0
773
How to create a search input with type='search'?
Article Introduction:Usage is the most direct way to create search input boxes. It has clear semantics and browser optimization functions. The basic writing method is to add attributes such as name and id to enhance functions; compared with ordinary text input, type="search" may be more rounded in appearance and has a clear button, which supports mobile-optimized keyboard and historical records recommendations in behavior; you can set results="0" or use CSS to hide the clear button; by customizing the CSS style, you can adjust the appearance characteristics of borders, inner margins, widths and other aspects; combined with HTML and CSS skills, you can also realize the search box design with icons.
2025-06-30
comment 0
201
Getting Started with Vector Search (Part 2)
Article Introduction:In Part 1, we set up PostgreSQL with pgvector. Now, let's see how vector search actually works.
Contents
What are Embeddings?
Loading Sample Data
Exploring Vector Search
Understanding PostgreSQL Operators
Next Steps
What are E
2024-11-10
comment 0
745
Using Solarium with SOLR for Search - Setup
Article Introduction:Core points
Apache SOLR is a powerful search platform that provides full-text search, faceted search, result highlighting and geospatial search. It can be integrated with any programming language via HTTP, and for PHP users, the Solarium project simplifies this integration.
SOLR runs as a web service, creating search indexes for documents. It allows full text searches and adds additional information to the indexed search document. One of its most useful features is facet search, allowing users to filter search results.
Installing SOLR involves setting it on your operating system, starting the server and verifying the installation through the administrative interface. The pattern defines the fields of the indexed document, which can be customized by copying the default directory.
2025-02-21
comment 0
562
Powering Search With Astro Actions and Fuse.js
Article Introduction:With Astro, we can generate most of our site during our build, but have a small bit of server-side code that can handle search functionality using something like Fuse.js. In this demo, we’ll use Fuse to search through a set of personal “bookmarks” th
2025-04-22
comment 0
736
How to Search for Files with Cortana in Windows 10
Article Introduction:How to search for files with Cortana in Windows 10? You can use Windows Cortana search feature to quickly search your PC for files, apps, and settings. Check the detailed guides in this post. For Windows users, you can get some useful free tools from
2025-06-06
comment 0
223