diff --git a/apc.module b/apc.module
index e29c9e0..91f7055 100644
--- a/apc.module
+++ b/apc.module
@@ -79,3 +79,33 @@ function apc_shutdown() {
     print '</div>';
   }
 }
+
+/**
+ * Implements hook_form_FORM_ID_alter().
+ */
+function apc_form_system_performance_settings_alter(&$form, $form_state) {
+  $form['clear_cache']['apc_user'] = array(
+    '#type' => 'submit',
+    '#value' => t('Clear APC user cache'),
+    '#submit' => array('apc_clear_user_cache'),
+  );
+  $form['clear_cache']['apc_opcode'] = array(
+    '#type' => 'submit',
+    '#value' => t('Clear APC opcode cache'),
+    '#submit' => array('apc_clear_opcode_cache'),
+  );
+}
+
+/**
+ * Helper function to clear user cache.
+ */
+function apc_clear_user_cache() {
+  apc_clear_cache('user');
+}
+
+/**
+ * Helper function to clear opcode cache.
+ */
+function apc_clear_opcode_cache() {
+  apc_clear_cache();
+}
