Serve a temporary database cloned from the process-local template cache.
(mut self)
| 207 | |
| 208 | /// Serve a temporary database cloned from the process-local template cache. |
| 209 | pub fn temporary(mut self) -> Self { |
| 210 | self.root = ServerRoot::Temporary { |
| 211 | template_cache: true, |
| 212 | }; |
| 213 | self |
| 214 | } |
| 215 | |
| 216 | /// Serve a temporary database initialized without the template cache. |
| 217 | /// |
no outgoing calls