accessing
options
	"Return the configuration options or define a default if they are not given"
	^ options ifNil: [ 
		options := Dictionary new
			at: 'caching' put: true;
			at: 'pagesPerRequest' put: '1';
			yourself
	  ]