mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-01-08 07:01:53 +00:00
30d75c999d
- Update documentation. - Update TODO. git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/branches/1.1@437 48356398-32a2-884e-a903-53898d9a118a
13 lines
432 B
Plaintext
13 lines
432 B
Plaintext
|
|
Optimization
|
|
|
|
Here are some possible optimization techniques we can apply to code sections if
|
|
they turn out to be slow. Be sure not to prematurely optimize: if you get
|
|
that itch, put it here!
|
|
|
|
- Make Tokens Flyweights (may prove problematic, probably not worth it)
|
|
- Rewrite regexps into PHP code
|
|
- Serialize the Definition object
|
|
- Batch regexp validation (do as many per function call as possible)
|
|
- Parallelize strategies
|