Advanced

Change History

Discuss your script development with others (bugs, optimizations, methods ...)

Message: N caches with NxN different properties

Changed By: sloth96
Change Date: August 18, 2021 12:14PM

N caches with NxN different properties
Hello all.

Summit Seekers Supreme's great macro is great and speedy. However I was trying to use it in a cut and paste fashion from another tag. It included the following in the tag:
[code]
"what":"country_region hidden_year cache_name visitdate"
[/code]


While this creates a nice pretty print with the cache name and visit date in the output, it also brought problems. The script checked that those were fields were unique as well. On a performance look, some of the cases were timing out.
Switching to the following really sped things up.

[code]
"what":"country_region hidden_year"
[/code]

It is probably worth an audit of these checkers to make sure we are not checking too many fields and driving up server load and false negatives on the checker. This mostly is a problem for people with a small number of finds. People with large numbers of finds can

All this was found in relation to https://project-gc.com/forum/read?8,54183

Looking at GC5PY17 it seems clear that this macro is really NxNxNxNxNx........

Can someone take a look and double check my assessment before scrubbing 150 checkers?

Thanks.

PS. Apologies for not giving SeekerSupreme correct credit the first time. The post has been edited to fix it.
Changed By: sloth96
Change Date: August 18, 2021 05:08AM

N caches with NxN different properties
Hello all.

Summit Seekers great macro is great and speedy. However I was trying to use it in a cut and paste fashion from another tag. It included the following in the tag:
[code]
"what":"country_region hidden_year cache_name visitdate"
[/code]


While this creates a nice pretty print with the cache name and visit date in the output, it also brought problems. The script checked that those were fields were unique as well. On a performance look, some of the cases were timing out.
Switching to the following really sped things up.

[code]
"what":"country_region hidden_year"
[/code]

It is probably worth an audit of these checkers to make sure we are not checking too many fields and driving up server load and false negatives on the checker. This mostly is a problem for people with a small number of finds. People with large numbers of finds can

All this was found in relation to https://project-gc.com/forum/read?8,54183

Looking at GC5PY17 it seems clear that this macro is really NxNxNxNxNx........

Can someone take a look and double check my assessment before scrubbing 150 checkers?

Thanks.

Original Message

Author: sloth96
Date: August 18, 2021 05:06AM

N caches with NxN different properties
Hello all.

Summit Seekers great macro is great and speedy. However I was trying to use it in a cut and paste fashion from another tag. It included the following in the tag:
[code]
"what":"country_region hidden_year cache_name visitdate"
[/code]


While this creates a nice pretty print with the cache name and visit date in the output, it also brought problems. The script checked that those were fields were unique as well. On a performance look, some of the cases were timing out.
Switching to the following really sped things up.

[code]
"what":"country_region hidden_year"
[/code]

It is probably worth an audit of these checkers to make sure we are not checking too many fields and driving up server load and false negatives on the checker. This mostly is a problem for people with a small number of finds. People with large numbers of finds can

All this was found in relation to https://project-gc.com/forum/read?8,54183

Can someone take a look and double check my assessment before scrubbing 150 checkers?

Thanks.