From 4630a7a224277d31e02e277d032dafe7ec52381e Mon Sep 17 00:00:00 2001 From: Brit Butler Date: Mon, 14 Jul 2014 13:40:59 -0400 Subject: [PATCH] Remove scaffolded parallel plugin. --- plugins/parallel.lisp | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 plugins/parallel.lisp diff --git a/plugins/parallel.lisp b/plugins/parallel.lisp deleted file mode 100644 index 18e4a13..0000000 --- a/plugins/parallel.lisp +++ /dev/null @@ -1,16 +0,0 @@ -(eval-when (:compile-toplevel :load-toplevel) - (ql:quickload 'lparallel)) - -(defpackage :coleslaw-parallel - (:use :cl) - (:export #:enable)) - -(in-package :coleslaw-parallel) - -;; TODO: The bulk of the speedup here should come from parallelizing discover. -;; Publish will also benefit. Whether it's better to spin off threads for each -;; content type/index type or the operations *within* discover/publish is not -;; known, the higher granularity of doing it at the iterating over types level -;; is certainly easier to prototype though. - -(defun enable ())