Hello,
2013/4/3 Willy Tarreau <[email protected]>
> Maybe what you want to do could already be achieved using stick-tables, as
> it is already possible to add/update/remove some stick-table entries from
> the CLI.
>
> Do you need many ACLs or many entries per ACL ? The difference is the
> number
> of different actions you want to do. If it's just selecting a server or
> another one depending on the URI, it should be almost trivial.
>
We have a lot of lines like that :
use_backend BACK1 if { path -i /user/path/file1.txt }
use_backend BACK2 if { path -i /user/path/file2.txt }
use_backend BACK1 if { path -i /user/path/file3.txt }
use_backend BACK1 if { path -i /user/path/file4.txt }
use_backend BACK2 if { path -i /user/path/file5.txt }
We'd like to update this very often, this is why I thought of a memcached (or
something similar) storage ...
Thanks