Compressed Cache

Component type

module

Maintenance status

Development status

Component created

Component changed

Adds gzip compression to cache data. Especially useful for sites with large amounts of cache_form data.

## INSTALLATION ##
1. Edit settings.php and add the following lines:

# Add this cache to the list of available cache implemntations
$conf['cache_backends'][] = 'sites/all/modules/compressed_cache/compressed_cache.inc';

# Add cache bins that you want to compress
$conf['cache_class_cache_form'] = 'CompressedDatabaseCache';

Variables that suck less

Component type

module

Maintenance status

Development status

Downloads

1131

Component created

Component changed

Looking for co-maintainers - contact beejeebus if you're interested!

This module provides more predictable, less site-eating behaviour around
Drupal's variable system.

The caching around the {variable} table in core is braindead. For many sites, a
large variable table plus relatively regular variable_set() / variable_del()
(drupal_cron_run(), ooops) calls can cause a site outage.

Views argument cache

Component type

module

Maintenance status

Development status

Downloads

2231

Component created

Component changed

Background

This module provides an "Argument-based" cache plugin for Views. It should only be used with Views that take arguments.

Traditional cache plugins generate cache keys based on everything available during the Views build process. This makes it impossible to flush a cache for a View only for specific arguments.

Take this example..

Search Interests (grassroots)

Component type

module

Maintenance status

Development status

Downloads

1720

Component created

Component changed

Welcome to Grassroots Interests.
As the name suggests get you the common interest out of specific keyword.

The GI Search module adds the extra functionality to the search displaying the common term or URL you wish to focus when a certain "keyword" is searched. This module is not dependent on search but it takes the argument passed in URL to match with the manually entered keywords, bind them with title and URL of our choice, within the site or some external URL.

Archimedes ☒

Component type

module

Maintenance status

Development status

Component created

Component changed

See http://drupal.org/sandbox/fiasco/1116808 or https://github.com/fiasco/Archimedes-Client-Drupal for the parent codebase.

(copied from Josh's sandbox page)

This module is the Drupal client module for Archimedes Server, a passive application monitoring tool.

*Installation*

Entity cache for Drupal Commerce

Component type

module

Maintenance status

Development status

Downloads

13021

Component created

Component changed

Entity cache puts core entities into Drupal's cache API.

The Entity cache for Drupal Commerce module enables caching of Drupal Commerce commerce_order, commerce_line_item, and commerce_product, entities.

How to use

Install the module like any other and reset cache so that the hook_entity_info_alter() implementation is executed.

Sponsored by Spartan and Myplanet Digital.

Views Calc Pager

Component type

module

Maintenance status

Development status

Downloads

499

Component created

Component changed

This module provides a pager for MySQL-backed views which uses the SQL_CALC_FOUND_ROWS hint to provide pager count information, avoiding a separate SELECT COUNT(*) query. For views whose queries are on the slower side, this can save as much as 50% (or possibly more) in query execution time.

Materialization Plugin for Views

Component type

module

Maintenance status

Development status

Component created

Component changed

This project aims to write a materialization plugin for Views. It creates a "materialized view" for a "view", and then materialize the results into temporary tables. And then, the following Views calls would be redirected to the materialized view. The changes would be made to the materialized view, when data in the view changes (or sometimes even drop the entire materialized view)