Is Google Search Appliance a good fit for a startup like Stackoverflow (just an example)? How does it fare?
I haven’t seen many examples or talk about this device being used in the startup circles. I need enhanced search experience with capabilities like stemming, spell check, relevancy, easy of indexing and retrieving and complete cust...
I have a query like this:
SELECT TOP 1 ID, DATA, OTHERINF FROM MYTABLE WHERE DATE = @DATE
and after reading the row data and using it I want to update that retrieved row and change one of it's columns (in another transaction).
But as you see here i searched for that row twice. Is there anyway that I keep remember the row and do the u...
I am trying to find values inside an array. This array always starts with 0.
unfortunately array_search start searching with the array element 1.
So the first element is always overlooked.
How could I "shift" this array to start with 1, or make array-search start with 0? The array comes out of an XML web service, so I can not rally modi...
Is there a C function to find the second occurrence of sub-string in string?
i.e. String - "213 File status 550 Access Denied. 550 Access Denied."
This function would return "550 found twice"....
...
Is there a way to first sort then search for an objects within a linked list of objects.
I thought just to you one of the sorting way and a binary search what do you think?
Thanks
...
I want to be able to utilize a 'grep' or 'pcregrep -M' like solution that parses a log file that fits the following parameters:
Each log entry can be multiple lines in length
First line of log entry has the key that I want to search for
Each key appears on more then one line
So in the example below I would want to return every line t...
Hi there,
is it possible to index uploaded documents in drupal and make them "searchable" via lucene or solr?
...
Hi!
I am trying to create a proper regular expression to find all anchors in my project with Eclipse File Search.
What I'm looking for:
<a href="some.url" onclick="some onclickHandler">
What I want to accomplish is finding all anchors without an onclick and add it when needed.
Thanks for your help!
...
Do search engines rate also the alt atribute in image tags?
In my opinion the alt attribute was for blind peoples.
...
Hoping that someone here will be able to provide some mysql advice...
I am working on a categorical searchtag system. I have tables like the following:
EXERCISES
exerciseID
exerciseTitle
SEARCHTAGS
searchtagID
parentID ( -> searchtagID)
searchtag
EXERCISESEARCHTAGS
exerciseID (Foreign key -> EXERCISES)
se...
I have a classifieds website, and it is using MySQL as a database.
My goal is to show the number of private, company and total ads in the db with the search-term entered in a text-input inside the form!
The Problem:
There are two types of ads: Private, and Company.
The user may specify which to display, or both, so thats three options....
I have a database which is readonly (I only have the access to view), but I have to index this database for search. The DAO layer to this table is now using a generic DAO approach with Hibernate+JPA. Is it possible to add hibernate search to this view and store the index in a separate database?
I am aware that I may lose the capability ...
I am writing a search engine whose purpose it is to search all kind of blogs for specific kinds of content.
I'm particularly focusing on these blogs engines:
Blogger
LiveJournal
MySpace
Open Diary
Tumblr
TypePad
Windows Live Spaces
Wordpress.com
Xanga
Now my question is: Is there any way I can use google to find links that are from a s...
If I have:
const char *mystr = "cheesecakes";
FILE *myfile = fopen("path/to/file.exe","r");
I need to write a function to determine whether myfile contains any occurrences of mystr. Could anyone help me? Thanks!
UPDATE: So it turns out the platform I need to deploy to doesn't have memstr. Does anyone know of a free implementation I c...
Hello,
I have a string which has a version number. I want to read the version number from this code so I can compare it with other code I am using. I have code done below but cannot get it working, can anyone see the problem?
print results
r = re.compile(r'(version\s*\s*)(\S+)')
for l in results:
m1 = r.match(l)
...
How do you implement a "similar items" system for items described by a
set of tags?
In my database, I have three tables, Article, ArticleTag and Tag. Each
Article is related to a number of Tags via a many-to-many
relationship. For each Article i want to find the five most similar
articles to implement a "if you like this article you wil...
In my newsletter I want to insert a search-form in order to search among my html documents in my site. How can I add such a form?
PS: I don't want "Google searching of pdf documents", I want MY PDF searching the web!
thank you
...
Is there a plug-in for Eclipse that lets you search based on the Java AST (Abstract Syntax Tree) of your project files? The "Java Search" feature doesn't seem to cover cases like:
"Get me all the fields declared as type 'X' in all classes"
I can imagine many more possibilities that would open up with an AST-based search, but I don't e...
I was a heavy user in Sphinx and Lucene.
Sphinx just takes a database, indexes it. And you call Sphinx to get the ID's.
But what if I want to create a search engine that's very tiny. Just a few rows of data and a few paragraphs of words? The trick is, the rows of data is constantly changing. So, I can't have an "index".
I want to be ...
Hi all,
I have a log file which has a format of this kind:
DATE-TIME ### attribute1 ### attribute2 ###attribute3
I have to search this log file for a input attribute(entered from command line) and output the lines that match the entered attribute.
A naive approach may be something like this:
scan the entire file line by line
searc...