Now, I'm creating a search page that receives, via POST , information from a form containing several checkbox . See below that there are several sequences of results and one orange is marked as an example:
WhenIclicksearch,theinfo...
The indexOf() is returning -1 even though I have this element, I'm doing this:
pessoas = [];
pessoas.push({"nome": "Pedro"})
pessoas.push({"nome": "João"})
pessoas.push({"nome": "Maria"})
pessoas.push({"nome": "José"})
console.log(pess...
Hello, I'm doing a search engine, but I'm kind of a layperson about Querys.
The method that I thought to refine the search, which in the case would be a simple search between two fields of a table with several products, was to be eliminated thro...
To find files whose name contains a certain string , we can use find as follows:
Sample file:
1429331804.H568641P9577.xxxx.example.com, S = 17846: 2,
Command to find by xxxx.example.com :
find . -type f -name "*xxx...
One page sites, are they usually listed on search engines?
There are several articles and it seems that One page sites are not very friendly to search engines, is this a reality? In which cases? Only content delivered by Ajax?
I think of p...
I have the following code
public DataTable PesquisarPorNome(string NomePesquisado)
{
try
{
DataTable tabela = new DataTable();
SqlDataAdapter adaptador = new SqlDataAdapter("SELECT * FROM tbEspecialidades WHERE NomeEspe...
It is very common to find a search on sites that returns records from different tables.
I need to implement a search on my site that returns produtos and usuários (profile) registered on the site. The result should be mix, but t...
When it comes to WEB systems What would be the safest and most used way for it to become invisible to search engines? I know there are "Goals" but I believe there must be more reliable ways
I have a set with certain strings, it's a vector, I need to do character searches in this set.
Case:
Be V my set of strings contemplated by: ["ana", "paula", "cris", "voa", "karmanguia"];
Be P my search, I want to c...
I'm running about eight servers with solr servers (version 3.5 ) behind a Load Balancer. All servers are identical and LB is configured with weight by number of connections. Servers have about 4 million documents and receive a stead...