@@ -39,40 +39,40 @@ It should be noted that we store the current session as a hash
3939reference in the ` psgix.session ` key inside the ` $env ` where you can
4040access it as needed.
4141
42- __ NOTE: __ As of version 0.04 the session is stored in ` psgix.session `
42+ ** NOTE: ** As of version 0.04 the session is stored in ` psgix.session `
4343instead of ` plack.session ` .
4444
4545## State
4646
47- - [ Plack::Session::State] ( http ://search.cpan. org/perldoc? Plack::Session::State)
47+ - [ Plack::Session::State] ( https ://metacpan. org/pod/ Plack::Session::State)
4848
4949 This will maintain session state by passing the session through
5050 the request params. It does not do this automatically though,
5151 you are responsible for passing the session param.
5252
53- - [ Plack::Session::State::Cookie] ( http ://search.cpan. org/perldoc? Plack::Session::State::Cookie)
53+ - [ Plack::Session::State::Cookie] ( https ://metacpan. org/pod/ Plack::Session::State::Cookie)
5454
5555 This will maintain session state using browser cookies.
5656
5757## Store
5858
59- - [ Plack::Session::Store] ( http ://search.cpan. org/perldoc? Plack::Session::Store)
59+ - [ Plack::Session::Store] ( https ://metacpan. org/pod/ Plack::Session::Store)
6060
6161 This is your basic in-memory session data store. It is volatile storage
6262 and not recommended for multiprocessing environments. However it is
6363 very useful for development and testing.
6464
65- - [ Plack::Session::Store::File] ( http ://search.cpan. org/perldoc? Plack::Session::Store::File)
65+ - [ Plack::Session::Store::File] ( https ://metacpan. org/pod/ Plack::Session::Store::File)
6666
6767 This will persist session data in a file. By default it uses
68- [ Storable] ( http ://search.cpan. org/perldoc? Storable) but it can be configured to have a custom serializer and
68+ [ Storable] ( https ://metacpan. org/pod/ Storable) but it can be configured to have a custom serializer and
6969 deserializer.
7070
71- - [ Plack::Session::Store::Cache] ( http ://search.cpan. org/perldoc? Plack::Session::Store::Cache)
71+ - [ Plack::Session::Store::Cache] ( https ://metacpan. org/pod/ Plack::Session::Store::Cache)
7272
73- This will persist session data using the [ Cache] ( http ://search.cpan. org/perldoc? Cache) interface.
73+ This will persist session data using the [ Cache] ( https ://metacpan. org/pod/ Cache) interface.
7474
75- - [ Plack::Session::Store::Null] ( http ://search.cpan. org/perldoc? Plack::Session::Store::Null)
75+ - [ Plack::Session::Store::Null] ( https ://metacpan. org/pod/ Plack::Session::Store::Null)
7676
7777 Sometimes you don't care about storing session data, in that case
7878 you can use this noop module.
@@ -83,20 +83,20 @@ The following are options that can be passed to this module.
8383
8484- _ state_
8585
86- This is expected to be an instance of [ Plack::Session::State] ( http ://search.cpan. org/perldoc? Plack::Session::State) or an
86+ This is expected to be an instance of [ Plack::Session::State] ( https ://metacpan. org/pod/ Plack::Session::State) or an
8787 object that implements the same interface. If no option is provided
88- the default [ Plack::Session::State::Cookie] ( http ://search.cpan. org/perldoc? Plack::Session::State::Cookie) will be used.
88+ the default [ Plack::Session::State::Cookie] ( https ://metacpan. org/pod/ Plack::Session::State::Cookie) will be used.
8989
9090- _ store_
9191
92- This is expected to be an instance of [ Plack::Session::Store] ( http ://search.cpan. org/perldoc? Plack::Session::Store) or an
92+ This is expected to be an instance of [ Plack::Session::Store] ( https ://metacpan. org/pod/ Plack::Session::Store) or an
9393 object that implements the same interface. If no option is provided
94- the default [ Plack::Session::Store] ( http ://search.cpan. org/perldoc? Plack::Session::Store) will be used.
94+ the default [ Plack::Session::Store] ( https ://metacpan. org/pod/ Plack::Session::Store) will be used.
9595
9696 It should be noted that this default is an in-memory volatile store
9797 is only suitable for development (or single process servers). For a
98- more robust solution see [ Plack::Session::Store::File] ( http ://search.cpan. org/perldoc? Plack::Session::Store::File) or
99- [ Plack::Session::Store::Cache] ( http ://search.cpan. org/perldoc? Plack::Session::Store::Cache) .
98+ more robust solution see [ Plack::Session::Store::File] ( https ://metacpan. org/pod/ Plack::Session::Store::File) or
99+ [ Plack::Session::Store::Cache] ( https ://metacpan. org/pod/ Plack::Session::Store::Cache) .
100100
101101# BUGS
102102
0 commit comments