equal
deleted
inserted
replaced
28 * local registry support |
28 * local registry support |
29 * network protocols utilities (for HTTP and XML-RPC) |
29 * network protocols utilities (for HTTP and XML-RPC) |
30 * command line scripts |
30 * command line scripts |
31 * custom utilities. |
31 * custom utilities. |
32 |
32 |
|
33 *PyAMS_content* is an important package providing content management features, which can be easily extended to manage |
|
34 your own content types. But PyAMS can also be used to manage any kind of application. |
|
35 |
33 If you just want to know how easy it is to create a PyAMS application instance, just read the :ref:`quickstart`! |
36 If you just want to know how easy it is to create a PyAMS application instance, just read the :ref:`quickstart`! |
34 |
37 |
35 To know how PyAMS management interface looks like, look at :ref:`screenshots`! |
38 To know how PyAMS management interface looks like, look at :ref:`screenshots`! |
36 |
39 |
37 |
40 |
47 |
50 |
48 |
51 |
49 PyAMS applications architecture |
52 PyAMS applications architecture |
50 ------------------------------- |
53 ------------------------------- |
51 |
54 |
52 PyAMS applications are built on a small set of prerequisites and components which *can* or, for some of them, *must* |
55 PyAMS applications are built on a small set of prerequisites and external components which *can* or, for some of them, |
53 be included. Some of them are: |
56 *must* be included. Some of them are: |
54 |
57 |
55 * a mandatory shared ZODB; |
58 * a mandatory shared ZODB; |
56 |
59 |
|
60 * a Redis or Memcached server, to handle cache and sessions; |
|
61 |
57 * a websockets server, used to handle desktop notifications; you can find information about this component in the |
62 * a websockets server, used to handle desktop notifications; you can find information about this component in the |
58 :ref:`pyams_notify` chapter; |
63 :ref:`pyams_notify` chapter; |
59 |
|
60 * a Redis or Memcached server, to handle cache and sessions; |
|
61 |
64 |
62 * an Elasticsearch index, used to handle quick and optimized searching. |
65 * an Elasticsearch index, used to handle quick and optimized searching. |
63 |
66 |
64 See :ref:`architecture` to get all architecture details. |
67 See :ref:`architecture` to get all architecture details. |
65 |
68 |