search

Is it possible to query google cache

Is it possible to query Google's cache with a specific date range. for instance, if i have a url: www.someurl.com/something I want to be able to see what Google's cache had indexed for that page at or around a given date range, is that possible? ...

can any one tell about indexing in solr ?

I am just a learner in Drupal, Solr so can any one guide me how to implement indexing and how it is being updated in solr indexing whenever any updates being happened in Database so that in searching to get the recently posted also. ...

Creating an efficient search capability using SQL Server (and/or coldfusion)

I am trying to visualize how to create a search for an application that we are building. I would like a suggestion on how to approach 'searching' through large sets of data. For instance, this particular search would be on a 750k record minimum table, of product sku's, sizing, material type, create date, etc; Is anyone aware of a 'plu...

Searching and Count records matching criteria in Django

I'd like to have a sorted list of certain database fields in my app e.g say year (where I'll have all records having a certain year tallied and the total displayed as in: 2009 (10), 2008(3) etc) then clicking on a certain year will display these records. How should I do this? EDIT 1 class Year(models.Model): year = models.PositiveSm...

indexing services for websites: lucene, and other options

Hey guys Just looking for some search and indexing services for our sites, and wondered if you guys could recommend anything? our requirements: The service can either index via http, or direct access to our database. It's gotta be just really simple to use, and set up provide a simple API so we can get the results programmatically an...

Offline full-text-search indexing and search capability

I have a reasonably large number of text documents ( 400+ ) which contain speeches related to an organization that I am a member of. We would like to distribute a CD/DVD which contains all these speeches along with an application that allows one to search based on keyword and find speeches which are relevant to that topic. My question i...

Accessing SharePoint Search Statistics via the API

Hi there, Does anyone know if/how you can retrieve the SharePoint search statistics via the API? We've been asked to build a Tag Cloud based on popular search terms so I want to get the top 10/15 most popular searches (together with their hit count) and build a control out programatically. Anyone seen this done or can point me in the r...

javascript for searching Text in PDF File Open in Browser Window

Hello, can u help me in giving code for "javascript for searching Text in PDF File Open in Browser Window". ...

Searching a HDF5 dataset

Hi all, I'm currently exploring HDF5. I've read the interesting comments from the thread "Evaluating HDF5" and I understand that HDF5 is a solution of choice for storing the data, but how do you query it ? For example, say I've a big file containing some identifiers : Is there a way to quickly know if a given identifier is present in the...

Do I assign different or the same class id to 32-bit and 64-bit versions of the same IFilter?

I've implemented my own Microsoft Search IFilter. I need two versions of it - 32-bit and 64-bit for deploying them on corresponding systems. In case of IFilters for any file extension I can only register one IFilter class id. Which means I can only use one version on any system. So having two class ids seems useless - it only makes the ...

Make an object searchable with array_search in PHP

Hi, I would like to make a class in PHP such as it would be searchable with PHP native method array_search. Currently my class implements IteratorAggregate and Countable, which allows me to do foreach on it. There is a couple of other SPL interfaces (SeekableIterator, ArrayAccess, etc...) which seems to maybe fit, but I would like to k...

Paging: Storing Search Results

What's the proper way to deal with a web page that returns results of a search that could have differing results from one moment to another? I.e. returning the query the first time could contain different results from when the user clicks on page 2, and running the query again. How do most people deal with this scenario? Generally I'm...

What approaches have been used for searching computer code?

I'm interested in natural language processing and wondering what approaches have been used to search for programming constructs and idioms in code. Assuming we can generate an abstract syntax tree for the program it should be possible to identify common constructs and perhaps deduce something about the motivation of the program(mmer). Fo...

Blog Search API in Java

Hi, Can anyone point out a blog search API in Java ? Looked at the Bloglines search API but could not find a Java-based API there. ...

Visual Basic 2008 File Search

Hello I need a file search for my Visual Basic 2008 program. Do you guys know a way to start off? I've heard that you need admin priveledge for some file searches, but I don't want any of those kind of things since it would be a bug to the user. Thanks, KEvin ...

How to display list of repositories from subversion server

I'm looking for a way to search a whole subversion server. I already got a piece of the puzzle to search within a repository. Now I need to do this for every repository. Update: I have to access this list from some unix shell script (perl, bash, etc.) ...

Svn: How do I list all files ever committed to the repository?

Hello, everyone! How could I let SVN list all files which were ever committed to a repository (if possible, along with location and revision). More exactly: I need all ever existed paths. If someone knows how to do a fulltext search on the entire repository (including all revisions), this would help me even better. Example Let's say...

Realtime Web Search (in .Net)

Hi, How would you guys go about creating a "real-time" search engine on .Net platform. Near real-time search of the web is so popular nowadays and I was hoping you guys would help me brainstorm some ideas. I might try to make some prototype eventually, but mostly it is just a "mental training". The requirements are: .NET platform, I...

PHP db search engine, Is it better to use and existing API?

I've been recommended to work with an existing API like Sphider, but I'm having trouble understanding how to configure it and what the hell does retrieving values from DB have to do with page indexing (it's not a content pages website). I was thinking of building a simple search myself with MyISAM tables. Does my plan have any downsides...

Needed an efficient way for search for the following specfic requirement

I have to search a given file name (let say Keyword) in a directory containing files. If there were only few keywords to be searched, I could have used regular search (like creating an array of file names residing in the specified directory and then search each file name with the given keyword). Since I need to search very large number...