GoCache : GoCache is an in-memory key:value store/cache similar to memcached that is suitable for applications running on a single machine.
This technology is used by 0% of websites in the CDN category. The most popular industry vertical is Business and Finance, with Business being the top subcategory.
What is GoCache?
GoCache is a Brazilian CDN (Content Delivery Network) and web acceleration platform that provides content caching, DDoS protection, and website optimization services. The platform offers edge servers across Brazil and internationally to deliver fast content to users regardless of their geographic location. GoCache specializes in serving the Latin American market with local infrastructure.
The CDN accelerates website delivery by caching static and dynamic content at edge locations close to end users. This reduces latency, decreases origin server load, and improves page load times. GoCache supports various caching strategies from simple static asset caching to advanced dynamic content acceleration.
GoCache includes security features like Web Application Firewall (WAF), DDoS mitigation, and bot protection. The platform analyzes traffic patterns to identify and block malicious requests while allowing legitimate traffic through. SSL/TLS termination at the edge provides secure connections without performance penalty.
The platform offers WordPress-specific optimizations and integrations, making it popular among Brazilian WordPress sites. Image optimization, minification, and lazy loading features further improve site performance without requiring changes to application code.
Detection of GoCache on a website indicates performance and security investment, particularly for sites targeting Brazilian or Latin American audiences. Organizations using GoCache typically prioritize regional performance optimization and local support availability.
Industry Vertical Distribution
Technologies Frequently Used with GoCache
| Technology | Co-usage Rate | Website |
|---|---|---|
| jQuery | 38.89% | https://jquery.com |
| Google Analytics | 33.33% | http://google.com/analytics |
| Swiper Slider | 27.78% | https://swiperjs.com |
| WordPress | 27.78% | https://wordpress.org |
| MySQL | 27.78% | http://mysql.com |
| Google Tag Manager | 27.78% | http://www.google.com/tagmanager |
| PHP | 27.78% | http://php.net |
| Google Font API | 27.78% | http://google.com/fonts |
| Twitter Emoji (Twemoji) | 22.22% | https://twitter.github.io/twemoji/ |
| Font Awesome | 22.22% | https://fontawesome.com/ |
GoCache Platform Features
CDN Acceleration: Global edge network. Brazilian infrastructure focus. Static content caching. Dynamic content optimization.
Security Protection: DDoS mitigation. Web Application Firewall. Bot detection. Rate limiting.
SSL Management: Free SSL certificates. Edge SSL termination. HTTP/2 support. Automatic certificate renewal.
Performance Optimization: Image compression. CSS/JS minification. GZIP compression. Browser caching headers.
WordPress Integration: WordPress plugin available. WooCommerce optimization. Cache purge integration. Automatic cache clearing.
Analytics: Traffic analytics. Security reports. Cache hit rates. Performance metrics.
API Access: Management API. Cache purge API. Configuration automation. Integration capabilities.
AI-Powered Technology Recommendations
Our AI recommender engine, trained on 100 million data points, suggests these technologies for websites using GoCache:
| Technology | AI Score | Website |
|---|---|---|
| Sqreen | 0.46 | https://sqreen.io |
| Yampi Virtual store | 0.31 | https://www.yampi.com.br/loja-virtual |
| Yampi Checkout | 0.3 | https://www.yampi.com.br/checkout |
| New Relic | 0.26 | https://newrelic.com |
| scrollreveal | 0.25 | https://scrollrevealjs.org |
| Litespeed Cache | 0.21 | https://wordpress.org/plugins/litespeed-cache/ |
| Weglot | 0.19 | https://www.weglot.com |
| WordPress Super Cache | 0.19 | http://z9.io/wp-super-cache/ |
| WP Fastest Cache | 0.16 | https://www.wpfastestcache.com |
| Pardot | 0.16 | https://www.pardot.com |
IAB Tier 1 Vertical Distribution
Relative Usage by Industry
Market Distribution Comparison
GoCache Use Cases
Brazilian E-commerce: Fast checkout experiences. Product image delivery. Local edge servers. Payment page security.
Media and Publishing: High-traffic news sites. Image-heavy content. Video delivery. Traffic spike handling.
WordPress Sites: Blog acceleration. Portfolio sites. Corporate WordPress. WooCommerce stores.
SaaS Applications: Application delivery. API acceleration. Multi-tenant caching. Regional deployment.
Marketing Sites: Campaign landing pages. Traffic surge handling. Fast load times. Conversion optimization.
Financial Services: Secure content delivery. DDoS protection critical. Compliance support. Low-latency trading.
IAB Tier 2 Subcategory Distribution
Top Websites Using GoCache
| Website | IAB Category | Subcategory | OpenRank |
|---|---|---|---|
| firb.com | Business and Finance | Industries | 3.03 |
| radio93.com.br | Automotive | Industries | 2.91 |
| abpi.org.br | News and Politics | Industries | 2.53 |
| carlacalcados.com.br | Personal Finance | Personal Debt | 1.83 |
| andersonfreire.com.br | Music and Audio | Musical Instruments | 1.82 |
| 8xbet131.com | Business and Finance | Industries | 1.78 |
| 8xbet133.com | Business and Finance | Video Game Genres | 1.78 |
| 8xbet136.com | Business and Finance | Computing | 1.78 |
| marinadeoliveira.com.br | Events and Attractions | Extreme Sports | 1.6 |
| 831556.com | Business and Finance | Business | 0 |
GoCache Integration Examples
DNS Configuration
Step 1: Add your domain to GoCache dashboard
Step 2: Update DNS records
Original DNS:
A example.com 123.45.67.89
After GoCache setup:
CNAME example.com example.com.gocache.com.br
Or use GoCache nameservers:
ns1.gocache.com.br
ns2.gocache.com.br
Cache Rules Configuration
GoCache Dashboard > Cache Rules
Rule 1: Cache static assets
- URL Pattern: *.css, *.js, *.png, *.jpg, *.gif, *.woff2
- Cache TTL: 30 days
- Browser TTL: 7 days
Rule 2: Cache HTML pages
- URL Pattern: /*
- Exclude: /admin/*, /cart/*, /checkout/*
- Cache TTL: 1 hour
- Browser TTL: None (revalidate)
Rule 3: Bypass cache
- URL Pattern: /api/*
- Cache: Bypass
- Forward cookies: Yes
WordPress Plugin Setup
// Install GoCache plugin from WordPress repository
// Configure in Settings > GoCache
// Automatic cache purge on post update
add_action('save_post', function($post_id) {
if (function_exists('gocache_purge_url')) {
$url = get_permalink($post_id);
gocache_purge_url($url);
}
});
// Purge entire cache
if (function_exists('gocache_purge_all')) {
gocache_purge_all();
}
API Integration
// GoCache API client
class GoCacheAPI {
private $apiKey;
private $baseUrl = 'https://api.gocache.com.br/v1';
public function __construct($apiKey) {
$this->apiKey = $apiKey;
}
public function purgeUrl($domain, $url) {
return $this->request('POST', "/domains/{$domain}/cache/purge", [
'urls' => [$url]
]);
}
public function purgeAll($domain) {
return $this->request('POST', "/domains/{$domain}/cache/purge", [
'purge_all' => true
]);
}
public function getAnalytics($domain, $startDate, $endDate) {
return $this->request('GET', "/domains/{$domain}/analytics", [
'start' => $startDate,
'end' => $endDate
]);
}
private function request($method, $endpoint, $data = []) {
$ch = curl_init($this->baseUrl . $endpoint);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: Bearer ' . $this->apiKey,
'Content-Type: application/json'
]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
if ($method === 'POST') {
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
}
return json_decode(curl_exec($ch), true);
}
}
// Usage
$gocache = new GoCacheAPI('your-api-key');
$gocache->purgeUrl('example.com', '/blog/updated-post');
Security Rules
WAF Configuration:
- Enable OWASP Core Rule Set
- Block SQL injection patterns
- Block XSS attempts
- Rate limit: 100 requests/minute per IP
Bot Protection:
- Challenge suspicious bots
- Allow known good bots (Google, Bing)
- Block bad bot signatures
- CAPTCHA for suspicious traffic
DDoS Protection:
- Automatic attack detection
- Traffic scrubbing enabled
- Alert threshold: 10x normal traffic
- Notification email: [email protected]
Usage by Domain Popularity (Top 1M)
Usage by Domain Age
The average age of websites using GoCache is 9.9 years. The average OpenRank (measure of backlink strength) is 1.53.
Why Organizations Choose GoCache
Brazilian Infrastructure: Local edge servers. Low latency in Brazil. Regional expertise. Portuguese support.
All-in-One Platform: CDN and security combined. Single vendor solution. Unified management. Simplified operations.
WordPress Focus: Optimized for WordPress. Easy plugin integration. WooCommerce support. CMS-aware caching.
Local Support: Portuguese-speaking team. Brazilian business hours. Local payment options. Regional compliance knowledge.
Cost Effective: Competitive pricing. BRL billing available. No surprise charges. Transparent pricing.
Easy Setup: Quick onboarding. DNS-level integration. No code changes required. Fast time-to-value.
Security Included: WAF included. DDoS protection. SSL certificates. Bot management.
Emerging Websites Using GoCache
| Website | IAB Category | Subcategory | OpenRank |
|---|---|---|---|
| 831556.com | Business and Finance | Business | 0 |
| x6881xf.com | Business and Finance | Business | 0 |
| 8xbet96.com | Business and Finance | Business | 0 |
| marinadeoliveira.com.br | Events and Attractions | Extreme Sports | 1.6 |
| 8xbet131.com | Business and Finance | Industries | 1.78 |