Skip to main content

Home/ Drupal for Developers/ Group items tagged performance

Rss Feed Group items tagged

Megan Lloyd

Excellent Apps for Monitoring the Performance of Android Devices - 0 views

  •  
    If you are an Android lover to an extent that you would want to know every small thing about the performance of your device, there are lot many apps which let you do it efficiently.Read more at:http://edinburgh.fortuneinnovations.com/news/excellent-apps-monitoring-performance-android-devices
Megan Lloyd

8 Best Apps to Boost up Android Performance - 0 views

  •  
    Android operating system offers a variety of applications which can be used in your personal and professional life. Here are some apps by using which you can boost up your Android's performance.Read more at: http://edinburgh.fortuneinnovations.com/news/8-best-apps-boost-androids-performance
Scott Blackburn

Drupal Performance Tuning and Optimization for large web sites | 2bits.com, Inc. - Drup... - 0 views

  • articles discuss performance tuning and optimization of Drupal as it pertains to web sites with a large number of visits and page views.
  •  
    Great list of articles that "discuss performance tuning and optimization of Drupal as it pertains to web sites with a large number of visits and page views."
specbee

How to perform Automated Backups on a Drupal 8 (or 9) Website | Specbee - 0 views

  •  
    Automation always takes a load off. Drupal 8 and Drupal 9 offers different ways to perform #automated_backups on your Drupal website. Learn more about using the #Backup and migrate Drupal module and CLI methods to #automate your backups.
anonymous

Mercury - 0 views

  •  
    Mercury is a drop-in replacement for your Drupal website hosting service that delivers break-through performance. Mercury can serve two-hundred times more pages per second and generate pages three times faster than standard hosting services.
Scott Blackburn

Drupal Performance Tip: Block Visibility | Lullabot - 3 views

  •  
    "So remember: don't rely on regions and template files to hide blocks; they do so visually only. Using block visibility settings will ensure that extra processing is not performed on blocks that aren't being printed out in the first place, and keep your server nice and speedy!" See also the comment regarding the Context module and even Panels. Personally, I rarely use the traditional block page these days and rely more and more on the Context module as well as the Panels module in some cases.
Csaba Kovács

Perform bulk operations on a custom database table with views | Wunderkraut - 0 views

  •  
    "/** * Implementation of hook_action_info(). */ function mymodule_action_info() { return array( 'mymodule_mytype_delete_action' => array( 'description' => t('Delete mytype'), 'type' => 'mytype', 'configurable' => FALSE, 'hooks' => array( 'mytype' => array('delete'), ), ), ); }"
Scott Blackburn

Improving Drupal's Performance with the Boost Module for the UN's Millennium Campaign |... - 0 views

  •  
    A good overview of the Boost module.
Scott Blackburn

Drupal Performance and Scalability | Tag1 Consulting, Inc. - 0 views

  •  
    Obtaining Optimal Performance From Drupal And The LAMP Stack. This book is written by Jeremy Andrews and licensed under a Creative Commons Attribution-Noncommercial-No Derivative Works 3.0 Unported License.
Bartłomiej Małysz

Improving Drupal's page loading performance | Wim Leers - 0 views

  •  
    Very clean tutorial of how tospeed up drupal site
Daniel Gregoire

Example Varnish VCL for a Drupal / Pressflow site | Drupal - 1 views

  •  
    Example Varnish configuration, used for optimizing site performance with file and database caching.
Megan Lloyd

The Problems in Android 5.0 Lollipop Update and Ways to Fix Them - 0 views

  •  
    Android 5.0 Lollipop is possibly the major software upgrades that meant to alter the performance under the cover, including new features and revamping the design language of the user interface.Read more at: http://edinburgh.fortuneinnovations.com/news/problems-android-50-lollipop-update-and-ways-fix-them
Scott Blackburn

Views Help: How to get a field to "Link this field to its user" besides username | drup... - 0 views

  • Though one would think the $field object is what we wanted-- the actual object we needed is $row (even though we're only looking at one field in the row). Put the following into the field tpl file to see what the necessary info is: <?phpprint '<pre>';print_r($row);print '</pre>';?> Then, to actually make the link, put the following in your field tpl file: <?php$account = user_load($row->uid);print l($row->profile_values_profile_fullname_value, 'users/' . $account->name);?> Change 'profile_values_profile_fullname_value' to the proper field alias (based on the $row output). Also, be sure to change 'users' to whatever the path is for your user accounts. I also had another thought-- given your use case, you may want to consider the http://drupal.org/project/realname module as well. It will replace usernames with whatever field(s) you designate all over the site. EDIT: I had another thought. I'm not sure of the performance implications of doing a user_load in the template file. Another option is to add the 'User: name' field to the view but exclude it from display. Then you could avoid the user_load and change the code in the tpl file to: <?phpprint l($row->profile_values_profile_fullname_value, 'users/' . $row->users_name);?>
  •  
    theming the field tpl files for Views2
anonymous

Free your content of PHP: Moving PHP code out of blocks, views and nodes | 2bits.com, I... - 2 views

  • From the early days, Drupal had the ability to embed PHP code in its content. This provides flexibility and functionality, most importantly, nodes and blocks can contain dynamically fetched data from the database using custom queries and displayed them in other content. This is an easy approach to get such data without writing a module. All you need to do is assign the PHP input format filter to the node or block and paste your PHP code in it, and voila, you have dynamic content. Code in Content: the issues However, this approach is suboptimal and has serious drawbacks, including:
  •  
    From the early days, Drupal had the ability to embed PHP code in its content. This provides flexibility and functionality, most importantly, nodes and blocks can contain dynamically fetched data from the database using custom queries and displayed them in other content. This is an easy approach to get such data without writing a module. All you need to do is assign the PHP input format filter to the node or block and paste your PHP code in it, and voila, you have dynamic content.
Daniel Gregoire

Load Testing Tools and Tips | Tag1 Consulting, Inc. - 1 views

  • ApacheBench (ab)
  • $ ab -n1000 -c10 http://localhost/
  • Links: Project's web page: http://httpd.apache.org/docs/trunk/programs/ab.html Benchmarking Drupal code with ab: http://drupal.org/node/79237
  • ...5 more annotations...
  • Siege
  • siege -c 10 -i -t 5m -d 3 -f url_list.txt
  • Links: Project's web page: http://www.joedog.org/JoeDog/Siege Sproxy project page: http://www.joedog.org/JoeDog/Sproxy
  • Apache JMeter
  • Links: Project's web page: http://jakarta.apache.org/jmeter/ Load testing Drupal with JMuery, part 1: http://www.johnandcailin.com/blog/john/load-test-your-drupal-application... Load testing Drupal with JMuery, part 2: http://www.johnandcailin.com/blog/john/load-test-your-drupal-application...
  •  
    Load testing tools. ab and siege are command-line, JMeter is graphical (and written in Java).
1 - 20 of 29 Next ›
Showing 20 items per page