Any searching tips for this forum?
|
Chaz Longstaff
Registered User
Join date: 11 Oct 2006
Posts: 685
|
01-04-2008 09:58
It happens quite frequently that I'll search on a term that I know I've seen discussed, and then the search results lie to me and say it isn't in the forum. For instance, a search just now on: llXorBase64StringsCorrect (carefully trimmed, no spaces) says, bzzzzz, you lose, please play again. Yet, here it indeed is: /54/d6/228064/1.htmland prolly a zillion (okay, loads) of other postings as well. Has anyone figured out any secrets into tricking the search here into, well, searching? Chaz
|
Chaz Longstaff
Registered User
Join date: 11 Oct 2006
Posts: 685
|
01-07-2008 08:32
Today, the search tool for this forum denies all knowledge of any discussion of the term llRequestPermissions .
What are the chances this term has never been discussed?
|
Deanna Trollop
BZ Enterprises
Join date: 30 Jan 2006
Posts: 671
|
01-07-2008 10:23
See the second part of the response:
"The following words are either very common, *too long*, or too short and were not included in your search : llRequestPermissions"
[emphasis mine]
|
Chaz Longstaff
Registered User
Join date: 11 Oct 2006
Posts: 685
|
01-07-2008 10:45
So you think it thinks llRequestPermissions is too long a search term?? Google doesn't.
Or maybe it thought it was too common a term, such as "the".
Erp.
|
Deanna Trollop
BZ Enterprises
Join date: 30 Jan 2006
Posts: 671
|
01-07-2008 11:03
From: Chaz Longstaff So you think it thinks llRequestPermissions is too long a search term?? Google doesn't. This forum isn't Google.  I believe it depends entirely on how the admin(s) of the forum set up the search limits, based on how they think server load would best be balanced. llRequestPermissions is 20 characters, and there aren't many 20-character words in the english language which come up in normal conversation.
|
Chaz Longstaff
Registered User
Join date: 11 Oct 2006
Posts: 685
|
01-07-2008 11:37
Well, the strength of the search engine here just adds to the fun of figuring out how LSL works, don't it :} After all, gawd forbid that searching on function language terms should bring up, um, function language terms? LOL. >> based on how they think server load would best be balanced hmm, I've written a fair old number of search engine stuff in me day, and I've never restricted someone based on character length in order to balance server load. Though i suppose it depends on the quality of the back end, etc. Anyway, I ain't shooting the messenger .... just going grrr... grin.
Who can I ask to have the search word length limit extended then for us? We need to be able to search on functions, for goodness sake.
|
Monica Balut
Beam-Me
Join date: 18 Feb 2007
Posts: 311
|
01-07-2008 11:38
From: Deanna Trollop This forum isn't Google.  I believe it depends entirely on how the admin(s) of the forum set up the search limits, based on how they think server load would best be balanced. llRequestPermissions is 20 characters, and there aren't many 20-character words in the english language which come up in normal conversation. If I remember my searching algorithms, wouldn't a long search word make searching go faster?
|
Void Singer
Int vSelf = Sing(void);
Join date: 24 Sep 2005
Posts: 6,973
|
01-07-2008 15:31
From: Monica Balut If I remember my searching algorithms, wouldn't a long search word make searching go faster? generaly yes... the problem isn't in the search algorithm, it's in the indexing feature... words of a certain size (too small, too big, too frequent) are not being indexed, and hence not being searched. sometimes it helps the break up the command, as people often shorthand command names like searching 'request permissions' instead of 'llRequestPermissions' etc... another trick, if the command has associated constants is to search for those, or parts of them... an example would be PERMISSION_DEBIT, which returns nothing (too long) but DEBIT returns several threads about requesting debit permissions... similarly searching base64 returns several threads including the xtea encryption thread which would probably have been helpful for OP also if you happen to know the name of the command, looking it up on one of the wikkis is usually helpful too... the format for addreses linked to lsl commands for the LSL_Portal is https://wiki.secondlife.com/wiki/llUnSit <-- capitalization counts, kinda annoying and for rpg stats its http://lslwiki.net/lslwiki/wakka.php?wakka=LLunsit <-- capitalization doesn't matter the first is likely to have examples and or links to other articles with a very dry technical nature (but always includes delay times and energy stats) geared towards experienced coders, and is in need of some editors to add examples in some spots (big bloody hint) the second is generally more complete on the page info, geared more to those newer to coding, but seems to have lost alot of editors so can get out of date lsl portal can be edited by any secondlife user (your av name and password are used). sadly it's been running a bit slow but hopefully the current updates to forums and wikis will speed this up
_____________________
| | . "Cat-Like Typing Detected" | . This post may contain errors in logic, spelling, and | . grammar known to the SL populace to cause confusion | | - Please Use PHP tags when posting scripts/code, Thanks. | - Can't See PHP or URL Tags Correctly? Check Out This Link... | - 
|
ArchTx Edo
Mystic/Artist/Architect
Join date: 13 Feb 2005
Posts: 1,993
|
01-07-2008 17:10
Make sure your forum User CP preferences do not limit the time period you can view back in history for previous posts. I seem to recall that caused some problems for me as it defaulted to 30 days or something like that.
_____________________
 VRchitecture Model Homes at http://slurl.com/secondlife/Shona/60/220/30 http://www.slexchange.com/modules.php?name=Marketplace&MerchantID=2240 http://shop.onrez.com/Archtx_Edo
|
Kidd Krasner
Registered User
Join date: 1 Jan 2007
Posts: 1,938
|
01-08-2008 07:13
From: Monica Balut If I remember my searching algorithms, wouldn't a long search word make searching go faster? It depends on the algorithm, but probably not. A binary search on a balanced tree, for example, will need to do the log n string comparisons regardless, and a long search word won't help.
|
Chaz Longstaff
Registered User
Join date: 11 Oct 2006
Posts: 685
|
01-08-2008 07:20
I have opened a support incident on this, as it's clearly not working properly.
|
Void Singer
Int vSelf = Sing(void);
Join date: 24 Sep 2005
Posts: 6,973
|
01-08-2008 16:30
From: Chaz Longstaff I have opened a support incident on this, as it's clearly not working properly. if by properly, you mean "like many other search features" then your right... it is however functioning as designed... limiting the seach term size reduces the amount of table references, which makes the reference table smaller... that's why it's designed this way a better suggestion would be to ask them up the word length limits, maybe on a per forum basis... or at least include lsl commands seeing as it is a scripting forum
_____________________
| | . "Cat-Like Typing Detected" | . This post may contain errors in logic, spelling, and | . grammar known to the SL populace to cause confusion | | - Please Use PHP tags when posting scripts/code, Thanks. | - Can't See PHP or URL Tags Correctly? Check Out This Link... | - 
|
Chaz Longstaff
Registered User
Join date: 11 Oct 2006
Posts: 685
|
01-08-2008 16:56
I have pointed out the issue that in the scripting fora, one is unable to search on many function terms. They can determine the cause, and if they are able to / care to fix it.
|
Void Singer
Int vSelf = Sing(void);
Join date: 24 Sep 2005
Posts: 6,973
|
01-08-2008 17:38
heh good luck with that, my experience is that you need to spoon feed the problem AND the solution to them, otherwise more pressing demands from the higher ups take precedence and the forget to research the problem or it ends up in the circular file, forgotten untill someone notices it or someone else points it out again... I think that's what was partly behind their decision to open source the viewer code.
_____________________
| | . "Cat-Like Typing Detected" | . This post may contain errors in logic, spelling, and | . grammar known to the SL populace to cause confusion | | - Please Use PHP tags when posting scripts/code, Thanks. | - Can't See PHP or URL Tags Correctly? Check Out This Link... | - 
|
Jesse Barnett
500,000 scoville units
Join date: 21 May 2006
Posts: 4,160
|
01-08-2008 19:27
Just a FYI. You could always cheat and use "llRequest" as a search term. That for example returns this result: /54/81/189144/1.html
_____________________
I (who is a she not a he) reserve the right to exercise selective comprehension of the OP's question at anytime. From: someone I am still around, just no longer here. See you across the aisle. Hope LL burns in hell for archiving this forum
|