|
Hi,
I switched my toppy on this evening an it went into vf&f.
Now a great number of my power searches are missing, and what remains have changed from power searches to text searches. It looks suspiciously like its all newer searches that are missing, ...
Answer Snippets (Read the full thread at toppy):
It may be worth deleting your EPG corrupted or gone missing, so MyStuff has recontructed your searches from the old individual search rename an ....
To a particular search and/or EPG data, rather than total number of searches.
|
|
When someone searches my website using a quick search feature I would like to log this into my database
Obviously I want to see what my users are searching for I can create a 'tag cloud' based on these searches I have a table searchterms at the moment...
Started by bluedaniel on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Terms - id - word terms_searched #id _term - time_search
Then, knowing the last with a where clause to specify you only want recent searches to be taken into account ?
And if your in your search box.
And "elephant", btw.
|
|
I'm discovering a simple solution for singular-plural keywords searches. I heard about stemming but I don't want to use all its features, only plural/singular transformation. The language is Dutch. Have looked at http://www.snowball.tartarus.org before...
Started by BoBaH32 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you don't know Dutch then I cannot help you, but show you how it'd be done in Spanish, for instance:
Plurals end with s, if it doesn't then... .
Use a dictionary, a list of stopwords (those you don't want to singularize) plus the rules for the language .
|
Ask your Facebook Friends
|
I what to record all my website searches with google analytics but the problem is my search links look like this
**www.mywebsite.com/search/category/your+query+here**
From what i found out i must give GA the query parameter ( mywebsite.com/search.php?...
Started by Daniel on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Choose Custom Filter in the Filter Type drop-down list, select Search and....
Yes, you can create a custom filter that rewrites URL /search/<category>/<query> to ?q .
As well as the Searches tracked in Site Search.
|
|
I'm writing a php-mysql application. The application allows the user to run a search against the database. When the search is run, if the user clicks on the back button to go back to it after examining an item brought up by it, they are asked if they ...
Started by dbingham on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
How costly are these "searches"? Why are they costly? Is it poor schema design , right? In many cases this may be....
"Because it's faster, and I read that it makes my app more scalable," is the usual and profile it .
The results of a search.
|
|
In order to do FULLTEXT searches on 2-letter phrases such as " PR Manager" and " MS Word", I have added *ft_min_word_len=2* to the MySQL config file (/etc/mysql/my.cnf).
Is there anything particularly wrong with doing this? Will it reduce performance?...
Started by Tom on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You....
It should have small impact on the speed of searches itself.
All two-letter combinations will have to be indexed, which will increase the size of your search indexes and slow down the indexing process.
On search performance.
|
|
I have a link in one column and based on it I want
Number of Google searches in column 2 Page rank of first result in column 3 I know this can be done, as i saw a friend pulling google search result right in Excel. If anyone knows, please share how I ...
Started by Thinkjayant on
, 8 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
That too not in the proper cell plugins for this (in various languages... .
I tried doing the same with web query in excel but i can only reach till the number of searches.
In one cell and pull number of searches and page rank in adjacent cells.
|
|
Is there any search engine that fills the gap where the normal search engines returns zero results.
Occasionally I need to do a search containing special characters. Like for instance searching for the gnu building configure parameter "--with-newlib"....
Started by Flugan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I like using Clusty ....
For what you want, try Google Code Search .
Google does not store those characters for normal search as they are rare and don't provide much benefit to mainstream search vs the cost of storing the extra info.
|
|
I've seen a few sites that list related searches when you perform a search, namely they suggest other search queries you may be interested in.
I'm wondering the best way to model this in a medium-sized site (not enough traffic to rely on visitor stats...
Started by Andrew Ingram on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Stem and search on that: Stem the search terms (eg the opposite, ....
I'd be curious the synonyms to show the user as possible search terms.
Your thought about storing previous searches seems reasonable to me.
Form queries.
|
|
I'm working on a small application and thinking about integrating BLAST or other local alignment searches into my application. My searching has only brought up programs, which need to be installed and called as an external program.
Is there a way short...
Started by brandstaetter on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
The BLAST algorithm was implemented ~20 years ago, it is now a very big algorithm and I cannot imagine it can be easily implemented... .
Computational Molecular Biology: An Introduction has code for Smith-Waterman and other dynamic programming alignment algorithms .
|