โ๏ธ Settings Configuration
This guide explains how to configure Django Structured JSON Field through Django settings.
๐ Overview
The Django Structured JSON Field can be configured through the STRUCTURED_FIELD
setting in your Django settings file. This allows you to customize behavior like caching to match your application's needs.
๐ Basic Configuration
Add the following to your settings.py
:
STRUCTURED_FIELD = {
'CACHE': {
'ENABLED': True, # Default is True
'SHARED': False # Default is False, experimental feature
}
}
๐ง Available Settings
Currently, the package supports the following settings:
๐๏ธ Cache Settings
STRUCTURED_FIELD = {
'CACHE': {
'ENABLED': True, # Enable/disable caching (default: True)
'SHARED': False # Enable thread-shared cache (experimental, default: False)
}
}
๐ Settings Explained
๐๏ธ Cache Settings
ENABLED
Controls whether the caching mechanism is enabled or disabled:
True
(default): Enables caching, which optimizes queries especially for related fieldsFalse
: Disables caching, which may be useful for debugging or testing
When caching is enabled, the field maintains an internal cache of related objects (from ForeignKey
and QuerySet
fields), reducing the number of database queries needed when accessing these objects.
SHARED
Controls whether the cache is shared between instances:
False
(default): Each field instance maintains its own cacheTrue
(experimental): Cache is shared across all instances, providing maximum optimization but with potential side effects
The shared cache is marked as experimental because it uses a global cache that's shared across threads, which may lead to unexpected behavior in multi-threaded environments.
๐ Environment-Specific Configurations
๐ ๏ธ Development Settings
For development, you might want to disable caching to make it easier to debug:
# settings/development.py
STRUCTURED_FIELD = {
'CACHE': {
'ENABLED': False # Disable cache for easier debugging
}
}
๐งช Testing Settings
For testing, you might want to test different cache configurations:
# settings/test.py
STRUCTURED_FIELD = {
'CACHE': {
'ENABLED': True, # Test with cache enabled
'SHARED': False # Standard cache mode
}
}
๐ Production Settings
For production, the default settings are generally recommended:
# settings/production.py
STRUCTURED_FIELD = {
'CACHE': {
'ENABLED': True, # Enable cache for performance
'SHARED': False # Use standard cache mode
}
}
๐ Testing Different Cache Modes
Based on the test files, you can test your application with different cache modes to measure performance and correctness:
Testing with Cache Disabled
from django.test import override_settings
@override_settings(STRUCTURED_FIELD={'CACHE': {'ENABLED': False}})
def test_without_cache():
# Test code here
pass
Testing with Standard Cache
from django.test import override_settings
@override_settings(STRUCTURED_FIELD={'CACHE': {'ENABLED': True, 'SHARED': False}})
def test_with_standard_cache():
# Test code here
pass
Testing with Shared Cache
from django.test import override_settings
@override_settings(STRUCTURED_FIELD={'CACHE': {'ENABLED': True, 'SHARED': True}})
def test_with_shared_cache():
# Test code here
pass
๐ Best Practices
Cache Configuration:
- Keep caching enabled in production for performance benefits
- Test thoroughly with both cache enabled and disabled
- Use the shared cache option only after extensive testing
Testing:
- Use Django's
override_settings
to test different cache configurations - Measure query counts with different cache settings
- Verify behavior correctness with all cache configurations
- Use Django's
Deployment:
- Document your cache settings in your deployment configuration
- Monitor performance in production
- Consider adjusting settings based on real-world performance data
โ Common Issues and Solutions
Performance Issues:
- If experiencing slow performance with relationships, ensure caching is enabled
- If memory usage is high, consider if shared cache might be contributing
- Use Django Debug Toolbar or similar tools to monitor query counts
Unexpected Behavior:
- If you notice unexpected results, try disabling the cache to see if caching is the cause
- Be particularly careful with the shared cache in multi-threaded environments
- Consider flush/clearing cache between test runs in your test suite
๐ Next Steps
After configuring settings, you might want to explore:
- โก Caching for more details on how caching works
- ๐ Relationships for working with related models
- ๐ REST Framework Integration for API configuration