search

CRM Dynamics Search wildCard

Hi there I'm exploring Dynamics CRM 4 and when I search a record for example, a contact, ex. Abcd, Dynamics is searching by Abcd*, including, by default, the WildCard in the end. Is there any way to also include the Wild Card, by default, in the beggining? Ex. Abcd --> *Abcd* ...

Where can I find an excellent database search engine script?

I've been looking for PHP, SQL open scripts on retrieving data from DB according to search terms. Now, every script I stumbled upon would not go well at this: say I'm looking for "barack obama's gay rights policy" ok? but in the DB there's "the obama policy on gays and their rights - an honest article". Albeit this is a pertine...

Where to look for an example of an excellenly made search functionality in an open source project

I am working on a search functionality for an encyclopedia-like application about species with millions of topics. Search of the information is organized mostly by looking up either common name or scientific name of the species. Currently we are using Solr as a backend search engine. I am looking for code examples to learn about algori...

Ruby web spider & search engine library

I'm looking for a Ruby library or gem (or set of gems) which will not only do spidering, but also collect the data into, say, a database, and allow basic searches on the data (i.e. a typical web search). I've found several spidering libraries, so that part seems well covered (I was going to try Anemone first), but I can't find anything ...

Non cap sensitive search C#

Hi all, I want to do a search of a list of strings, non cap sensitive. Have tried .Contains and == Is there a method to do this, or would I have to convert the entire list of strings to noncaps, then search? Cheers! ...

how to use sphinx in rails and exclude results based on a column value

I have a simple query to show users that are active, but somehow it is still showing inactive users. I am using sphinx. The query looks like: User.search keywords,:conditions=>conditions, :match_mode=>:boolean, :order =>sort_order.to_s, :page => page,:per_page =>per_page the conditions hash looks like this: conditions = {:is_expired...

To Create a Search, with values from multiple selection element?

I am working in PHP(with Symfony Framework) and i want to create a search based on multiple values selected from multiple selection element, i.e there will be multiple selection dropdown elements for like countries, cities, age etc.. and the values from them will query a data table and give the desired search output. (all values are not ...

Can I read the search scope selected in SharePoint from code behind

I have a search box web part. In that web part I have created an instance of SearchBoxEx like SearchBoxEx par=new SearchBoxEx par.goImageUrl="" par.DropDownMode= DropDownModes.DisplayScopeDD; Button sear= new Button(); sear.Click += new EventHnadler(sear_Click); I have added a button to that search Box web part.Now I have to read the s...

File system regular expression search tool

What is the best tool to make complex (multi-line) regular expression file contents searches with good reporting capabilities? I need to make a report over large Java/JSP code base and I have to make some charts afterward. Eclipse is rather good at searches, but it does not provide good report of what is found. It just shows the tree ...

Does an IFilter Exist for Indexing Source Code Files?

Anybody know of an IFilter that can index source code files beyond what the "Plain Text" filter can provide, with possibly a custom "Property Set" specific to programming? For example, I have 835MB in 41,000 files and 8,200 folders in my "Code Library" folder. I would like to perform searches such as "select distinct attributes on prop...

Drupal search engine does not index my custom nodes!

Somebody has posted an hour ago or so a question that was about the drupal search engine and was about like this: I know drupal should index anything that is returned by node_view() but this is not happening for my custom content. Also: are there better alternatives to Drupal built-in functionality? As the question has been removed...

Add Site and Page Description to SharePoint Search Index

Hi, As part of a SharePoint solution, the functionality for users to create new web sites and publishing pages (programmatically) via a button click has been added. I need to ensure that the Description field for the newly created sites and pages is indexed by SharePoint Search. What is the best way to do this? Please note, I am NOT in...

Optimising Searching of a 2-dimensional Array with LINQ

I have a 2-dimensional array of objects (predominantly, but not exclusively strings) that I want to filter by a string (sSearch) using LINQ. The following query works, but isn't as fast as I would like. I have changed Count to Any, which led to a significant increase in speed and replaced Contains by a regular expression that ignores ca...

MySQL database search

I have a database table with chinese dictionaries (about 300 000 rows) for online dictionary. The data structure looks like this: ID ch_smpl pinyin definition ---------------------------------------- 1 我 wǒ I, me 2 我们 wǒmen we, us etc. I'm not good with php and mysql, so th...

file search in c++

hey I just started learning c++ and am currently using codeblocks. i wanna write an application that can search for files in directory including it's subdirs, but i cant seem to find any good examples for this and i've read somewhere that this is only possible trough a library like boost. is this true? any examples for doing it withou...

"Permission Denied" in Django template using Djapian

I've followed the Djapian tutorial and setup everything "by the book" so that the indexshell commandline supplied by Djapian shows successful queries. However, when integrating the sample search from the Djapian tutorial I get this nonsense error: TemplateSyntaxError at /search/ Caught an exception while rendering: (13, 'Permis...

Solr Facetting - Showing First 10 results and Other

I am implementing a solution in Solr where I have a lot of values in my facet. As opposed to displaying a long list of values(facets) down the side of my page I want to display the top 10. And also have one for other. For instance I would be faceting on Nationality. So, I do not want to have a list of every nationality, Nor do I want ...

Thinking Sphinx - Roats Index Every Time a Model is Updated or Created, How to Stop?

Every-time I create or update a model in my Rails app, the following output occurs from Sphinx: Sphinx 0.9.8.1-release (r1533) Copyright (c) 2001-2008, Andrew Aksyonoff using config file '/Users/jason/development/projects/active/project/config/development.sphinx.conf'... indexing index 'ad_delta'... collected 17 docs, ...

Getting javascript to search an array within an array

I have the following javascript to loop through an array of records, and alert the number of matches found within the array, for each field: mymusic=[{title:"a",artist:"b",artwork:"c",tracks:[{tracktitle:"d",trackmp3:"e"}]}]; tracksArray=[]; trackTitles=[]; var albumScore=0; var artistScore=0; var tracksScore=0; stringToSearchFor="...

How can I do a sort and search using both GET and POST variables?

I am currently using column header's as links that when clicked will sort the results by the column name by adding a get variable to the url. Here is an example: <a href=" <?php // Sorts by order id. If already sorted by order id, then it will change the link to sort descending if(!isset($_GET['sortby']) || $_GET['sortby'] != 'ord...